[SCM] live-build branch, upstream, updated. upstream/3.0_a31-1-gb9db1b5
Daniel Baumann
daniel at debian.org
Tue Sep 27 20:58:59 UTC 2011
The following commit has been merged in the upstream branch:
commit b9db1b5f022575b59adffd4f88791eaa10840cea
Author: Daniel Baumann <daniel at debian.org>
Date: Tue Sep 27 22:59:04 2011 +0200
Adding upstream version 3.0~a32.
diff --git a/VERSION b/VERSION
index 4fe660f..e7c0eca 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0~a31-1
+3.0~a32-1
diff --git a/cron/live-build-cron-images b/cron/live-build-cron-images
index 334d039..681a79b 100755
--- a/cron/live-build-cron-images
+++ b/cron/live-build-cron-images
@@ -174,7 +174,7 @@ Build ()
case "${LB_VERSION}" in
2.0*)
- _PACKAGE_LISTS="--packages-lists ${FLAVOUR}"
+ _PACKAGE_LISTS="--package-lists ${FLAVOUR}"
;;
3.0*)
diff --git a/examples/auto/config b/examples/auto/config
index e67a471..55cef49 100755
--- a/examples/auto/config
+++ b/examples/auto/config
@@ -1,5 +1,5 @@
#!/bin/sh
lb config noauto \
- --packages-lists "standard" \
+ --package-lists "standard" \
"${@}"
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 643123c..53c7af9 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -342,7 +342,7 @@ Set_defaults ()
;;
progress)
- LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://cdn.debian.net/debian/}"
+ LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ftp.debian.org/debian/}"
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://archive.progress-linux.org/progress/}"
;;
@@ -377,7 +377,7 @@ Set_defaults ()
;;
progress)
- LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://cdn.debian.net/debian-security/}"
+ LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}"
;;
@@ -453,7 +453,7 @@ Set_defaults ()
;;
progress)
- LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://cdn.debian.net/debian/}"
+ LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ftp.debian.org/debian/}"
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_MIRROR_CHROOT}}"
;;
@@ -490,7 +490,7 @@ Set_defaults ()
;;
progress)
- LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://cdn.debian.net/debian-security/}"
+ LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}"
;;
@@ -929,7 +929,7 @@ Set_defaults ()
_LB_BOOTAPPEND_PRESEED="file=/cdrom/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
;;
- usb*)
+ hdd*)
case "${LB_MODE}" in
ubuntu|kubuntu)
if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
@@ -1010,6 +1010,29 @@ Set_defaults ()
;;
esac
+ # Setting hdd options
+ case "${LB_MODE}" in
+ debian)
+ LB_HDD_LABEL="${LB_HDD_LABEL:-DEBIAN_LIVE}"
+ ;;
+
+ emdebian)
+ LB_HDD_LABEL="${LB_HDD_LABEL:-EMDEBIAN_LIVE}"
+ ;;
+
+ progress)
+ LB_HDD_LABEL="${LB_HDD_LABEL:-PROGRESS_$(echo ${LB_DISTRIBUTION} | tr [a-z] [A-Z])}"
+ ;;
+
+ ubuntu)
+ LB_HDD_LABEL="${LB_HDD_LABEL:-UBUNTU}"
+ ;;
+
+ kubuntu)
+ LB_HDD_LABEL="${LB_HDD_LABEL:-KUBUNTU}"
+ ;;
+ esac
+
# Setting iso volume
case "${LB_MODE}" in
debian)
@@ -1184,8 +1207,8 @@ Check_defaults ()
fi
case "${LB_BINARY_IMAGES}" in
- usb*)
- # grub or yaboot + usb
+ hdd*)
+ # grub or yaboot + hdd
case "${LB_BOOTLOADER}" in
grub|yaboot)
Echo_error "You have selected a combination of bootloader and image type that is currently not supported by live-build. Please use either another bootloader or a different image type."
@@ -1195,22 +1218,22 @@ Check_defaults ()
;;
esac
- if [ "$(echo ${LB_ISO_APPLICATION} | wc -c)" -gt 128 ]
+ if [ "$(echo \"${LB_ISO_APPLICATION}\" | wc -c)" -gt 128 ]
then
Echo_warning "You have specified a value of LB_ISO_APPLICATION that is too long; the maximum length is 128 characters."
fi
- if [ "$(echo ${LB_ISO_PREPARER} | wc -c)" -gt 128 ]
+ if [ "$(echo \"${LB_ISO_PREPARER}\" | wc -c)" -gt 128 ]
then
Echo_warning "You have specified a value of LB_ISO_PREPARER that is too long; the maximum length is 128 characters."
fi
- if [ "$(echo ${LB_ISO_PUBLISHER} | wc -c)" -gt 128 ]
+ if [ "$(echo \"${LB_ISO_PUBLISHER}\" | wc -c)" -gt 128 ]
then
Echo_warning "You have specified a value of LB_ISO_PUBLISHER that is too long; the maximum length is 128 characters."
fi
- if [ "$(eval "echo ${LB_ISO_VOLUME}" | wc -c)" -gt 32 ]
+ if [ "$(eval "echo \"${LB_ISO_VOLUME}\"" | wc -c)" -gt 32 ]
then
Echo_warning "You have specified a value of LB_ISO_VOLUME that is too long; the maximum length is 32 characters."
fi
diff --git a/functions/exit.sh b/functions/exit.sh
index ad17c1e..5152253 100755
--- a/functions/exit.sh
+++ b/functions/exit.sh
@@ -35,7 +35,7 @@ Exit ()
done
fi
- Echo_message "Saving chaches..."
+ Echo_message "Saving caches..."
# We can't really know at which part we're failing,
# but let's assume that if there's any binary stage file arround
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index 617cd6f..4467642 100644
--- a/manpages/de/lb.de.1
+++ b/manpages/de/lb.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb\fP \- wrapper for live\-build programs
diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1
index 396f3f9..ed5b5f8 100644
--- a/manpages/de/lb_binary.de.1
+++ b/manpages/de/lb_binary.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1
index 71e06e0..e063630 100644
--- a/manpages/de/lb_binary_checksums.de.1
+++ b/manpages/de/lb_binary_checksums.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_checksums\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1
index 25d9854..448e0a0 100644
--- a/manpages/de/lb_binary_chroot.de.1
+++ b/manpages/de/lb_binary_chroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_chroot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1
index b27d4cc..a7cf3ee 100644
--- a/manpages/de/lb_binary_debian-installer.de.1
+++ b/manpages/de/lb_binary_debian-installer.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_debian\-installer\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1
index 5d8310f..b605961 100644
--- a/manpages/de/lb_binary_disk.de.1
+++ b/manpages/de/lb_binary_disk.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_disk\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1
index 73dd4a4..e8a7581 100644
--- a/manpages/de/lb_binary_grub.de.1
+++ b/manpages/de/lb_binary_grub.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_grub\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1
index fcb693a..0d0eda2 100644
--- a/manpages/de/lb_binary_grub2.de.1
+++ b/manpages/de/lb_binary_grub2.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_grub2\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_usb.de.1 b/manpages/de/lb_binary_hdd.de.1
similarity index 79%
rename from manpages/de/lb_binary_usb.de.1
rename to manpages/de/lb_binary_hdd.de.1
index 06a3abf..e77b503 100644
--- a/manpages/de/lb_binary_usb.de.1
+++ b/manpages/de/lb_binary_hdd.de.1
@@ -3,22 +3,22 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
-\fBlb binary_usb\fP \- Complete the binary stage
+\fBlb binary_hdd\fP \- Complete the binary stage
.SH SYNOPSIS
-\fBlb binary_usb\fP [\fIlive\-buillive\-build]\fP
+\fBlb binary_hdd\fP [\fIlive\-buillive\-build]\fP
.SH DESCRIPTION
-\fBlb binary_usb\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7), the
+\fBlb binary_hdd\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7), the
Debian Live tool suite.
.PP
.\" FIXME
.SH OPTIONS
-\fBlb binary_usb\fP has no specific options but understands all generic
+\fBlb binary_hdd\fP has no specific options but understands all generic
live\-build options. See \fIlive\-build\fP(7) for a complete list of all generic
live\-build options.
diff --git a/manpages/de/lb_binary_hooks.de.1 b/manpages/de/lb_binary_hooks.de.1
index 46126a2..7b7a2ee 100644
--- a/manpages/de/lb_binary_hooks.de.1
+++ b/manpages/de/lb_binary_hooks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_local\-hooks\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1
index 7734e19..b9c9cc7 100644
--- a/manpages/de/lb_binary_includes.de.1
+++ b/manpages/de/lb_binary_includes.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1
index 76d3dba..f65deb4 100644
--- a/manpages/de/lb_binary_iso.de.1
+++ b/manpages/de/lb_binary_iso.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_iso\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1
index 4e5d54e..562339b 100644
--- a/manpages/de/lb_binary_linux-image.de.1
+++ b/manpages/de/lb_binary_linux-image.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_linux\-image\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1
index f04f5e8..f154ce6 100644
--- a/manpages/de/lb_binary_local-includes.de.1
+++ b/manpages/de/lb_binary_local-includes.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_local\-includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 144cfd0..d245d61 100644
--- a/manpages/de/lb_binary_manifest.de.1
+++ b/manpages/de/lb_binary_manifest.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_manifest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1
index bb95ffd..7716343 100644
--- a/manpages/de/lb_binary_memtest.de.1
+++ b/manpages/de/lb_binary_memtest.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_memtest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_net.de.1 b/manpages/de/lb_binary_net.de.1
index c9903f3..2beadf1 100644
--- a/manpages/de/lb_binary_net.de.1
+++ b/manpages/de/lb_binary_net.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_net\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1
index fc74a8f..efb0487 100644
--- a/manpages/de/lb_binary_rootfs.de.1
+++ b/manpages/de/lb_binary_rootfs.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_rootfs\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1
index d201c04..9435b4b 100644
--- a/manpages/de/lb_binary_silo.de.1
+++ b/manpages/de/lb_binary_silo.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_silo\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1
index cffddfb..210cca3 100644
--- a/manpages/de/lb_binary_syslinux.de.1
+++ b/manpages/de/lb_binary_syslinux.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_syslinux\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1
index 58e7cba..10a4f0c 100644
--- a/manpages/de/lb_binary_tar.de.1
+++ b/manpages/de/lb_binary_tar.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_tar\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1
index 26ec4c8..540f8f4 100644
--- a/manpages/de/lb_binary_virtual-hdd.de.1
+++ b/manpages/de/lb_binary_virtual-hdd.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_virtual\-hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1
index 3c2f113..97dc704 100644
--- a/manpages/de/lb_binary_win32-loader.de.1
+++ b/manpages/de/lb_binary_win32-loader.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_win32\-loader\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1
index 8712d4b..68cb051 100644
--- a/manpages/de/lb_binary_yaboot.de.1
+++ b/manpages/de/lb_binary_yaboot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb binary_yaboot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 77d9228..de9aa8e 100644
--- a/manpages/de/lb_bootstrap.de.1
+++ b/manpages/de/lb_bootstrap.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1
index 7c4cb2e..e0efc98 100644
--- a/manpages/de/lb_bootstrap_cache.de.1
+++ b/manpages/de/lb_bootstrap_cache.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_cache\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1
index 75956f6..998bf3b 100644
--- a/manpages/de/lb_bootstrap_cdebootstrap.de.1
+++ b/manpages/de/lb_bootstrap_cdebootstrap.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1
index a8e81f1..cf922cc 100644
--- a/manpages/de/lb_bootstrap_copy.de.1
+++ b/manpages/de/lb_bootstrap_copy.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_copy\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1
index 8442bab..9627893 100644
--- a/manpages/de/lb_bootstrap_debootstrap.de.1
+++ b/manpages/de/lb_bootstrap_debootstrap.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index 8840d45..d169114 100644
--- a/manpages/de/lb_build.de.1
+++ b/manpages/de/lb_build.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1
index c1316bf..8652a78 100644
--- a/manpages/de/lb_chroot.de.1
+++ b/manpages/de/lb_chroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1
index 6f294e0..0b6990a 100644
--- a/manpages/de/lb_chroot_apt.de.1
+++ b/manpages/de/lb_chroot_apt.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_apt\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_archives.de.1 b/manpages/de/lb_chroot_archives.de.1
index 10cce0e..934de6e 100644
--- a/manpages/de/lb_chroot_archives.de.1
+++ b/manpages/de/lb_chroot_archives.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_archives\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1
index ed958b2..18fb030 100644
--- a/manpages/de/lb_chroot_cache.de.1
+++ b/manpages/de/lb_chroot_cache.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_cache\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1
index b320260..5f815d0 100644
--- a/manpages/de/lb_chroot_debianchroot.de.1
+++ b/manpages/de/lb_chroot_debianchroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_debianchroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1
index 4547ae2..03b1dc6 100644
--- a/manpages/de/lb_chroot_devpts.de.1
+++ b/manpages/de/lb_chroot_devpts.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_devpts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1
index 61633e6..897d1f6 100644
--- a/manpages/de/lb_chroot_dpkg.de.1
+++ b/manpages/de/lb_chroot_dpkg.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_dpkg\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1
index 5d56632..f5da25e 100644
--- a/manpages/de/lb_chroot_hacks.de.1
+++ b/manpages/de/lb_chroot_hacks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hacks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hooks.de.1 b/manpages/de/lb_chroot_hooks.de.1
index fd6958b..e5974a7 100644
--- a/manpages/de/lb_chroot_hooks.de.1
+++ b/manpages/de/lb_chroot_hooks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hooks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index 7148031..af1f370 100644
--- a/manpages/de/lb_chroot_hostname.de.1
+++ b/manpages/de/lb_chroot_hostname.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hostname\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1
index 0f4038d..8ed990f 100644
--- a/manpages/de/lb_chroot_hosts.de.1
+++ b/manpages/de/lb_chroot_hosts.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hosts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1
index 7592d8b..30c65cb 100644
--- a/manpages/de/lb_chroot_install-packages.de.1
+++ b/manpages/de/lb_chroot_install-packages.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_install\-packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1
index 52d2ead..a6a42a6 100644
--- a/manpages/de/lb_chroot_interactive.de.1
+++ b/manpages/de/lb_chroot_interactive.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_interactive\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1
index 526f142..62c5cb2 100644
--- a/manpages/de/lb_chroot_linux-image.de.1
+++ b/manpages/de/lb_chroot_linux-image.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_linux\-image\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index 5044f86..b535565 100644
--- a/manpages/de/lb_chroot_local-includes.de.1
+++ b/manpages/de/lb_chroot_local-includes.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_local\-includes\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1
index 156f8ed..ed5fd42 100644
--- a/manpages/de/lb_chroot_local-patches.de.1
+++ b/manpages/de/lb_chroot_local-patches.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_local\-patches\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1
index 703d0e0..c0778b2 100644
--- a/manpages/de/lb_chroot_local-preseed.de.1
+++ b/manpages/de/lb_chroot_local-preseed.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_local\-preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packagelists.de.1 b/manpages/de/lb_chroot_packagelists.de.1
index b66eb21..8b1b818 100644
--- a/manpages/de/lb_chroot_packagelists.de.1
+++ b/manpages/de/lb_chroot_packagelists.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_packagelists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1
index 1bde7f6..08b7232 100644
--- a/manpages/de/lb_chroot_packages.de.1
+++ b/manpages/de/lb_chroot_packages.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_preseed.de.1 b/manpages/de/lb_chroot_preseed.de.1
index 6f930c8..a8fd809 100644
--- a/manpages/de/lb_chroot_preseed.de.1
+++ b/manpages/de/lb_chroot_preseed.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index 4e6ed52..d4928a2 100644
--- a/manpages/de/lb_chroot_proc.de.1
+++ b/manpages/de/lb_chroot_proc.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_proc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1
index a059f7a..be34e98 100644
--- a/manpages/de/lb_chroot_resolv.de.1
+++ b/manpages/de/lb_chroot_resolv.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_resolv\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1
index a40ec40..6a20766 100644
--- a/manpages/de/lb_chroot_selinuxfs.de.1
+++ b/manpages/de/lb_chroot_selinuxfs.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_selinuxfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1
index f0e9d88..43aaa67 100644
--- a/manpages/de/lb_chroot_sysfs.de.1
+++ b/manpages/de/lb_chroot_sysfs.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_sysfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1
index 8c83fec..d9f21e5 100644
--- a/manpages/de/lb_chroot_sysv-rc.de.1
+++ b/manpages/de/lb_chroot_sysv-rc.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_sysv\-rc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_task-lists.de.1 b/manpages/de/lb_chroot_task-lists.de.1
index 7b97e14..7f6a0f8 100644
--- a/manpages/de/lb_chroot_task-lists.de.1
+++ b/manpages/de/lb_chroot_task-lists.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_task\-lists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1
index c5720d0..0e11ac2 100644
--- a/manpages/de/lb_chroot_upstart.de.1
+++ b/manpages/de/lb_chroot_upstart.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb chroot_upstart\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index 57d03d4..b13f31c 100644
--- a/manpages/de/lb_clean.de.1
+++ b/manpages/de/lb_clean.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb clean\fP \- Clean build directory
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index 3050338..181c073 100644
--- a/manpages/de/lb_config.de.1
+++ b/manpages/de/lb_config.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb config\fP \- Create config directory
@@ -36,7 +36,7 @@
.br
[\-a|\fB\-\-architectures\fP \fIARCHITECTURE\fP]
.br
- [\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd|virtual\-hdd]
+ [\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|hdd|virtual\-hdd]
.br
[\fB\-\-binary\-filesystem\fP fat16|fat32|ext2|ext3|ext4]
.br
@@ -220,7 +220,7 @@
.br
[\fB\-\-source\fP true|false]
.br
- [\-s|\fB\-\-source\-images\fP iso|net|tar|usb\-hdd]
+ [\-s|\fB\-\-source\-images\fP iso|net|tar|hdd]
.br
[\fB\-\-syslinux\-theme\fP \fITHEME_SUFFIX\fP]
.br
@@ -317,19 +317,19 @@ architecture if your host system is not able to execute binaries for the
target architecture natively. For example, building amd64 images on i386 and
vice versa is possile if you have a 64bit capable i386 processor and the
right kernel. But building powerpc images on an i386 system is not possible.
-.IP "\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd" 4
+.IP "\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|hdd" 4
defines the image type to build. By default, for images using syslinux this
-is set to iso\-hybrid to build CD/DVD images that may also be used like
-usb\-hdd images, for non\-syslinux images, it defaults to iso.
+is set to iso\-hybrid to build CD/DVD images that may also be used like hdd
+images, for non\-syslinux images, it defaults to iso.
.IP "\fB\-\-binary\-filesystem\fP fat16|fat32|ext2|ext3|ext4" 4
defines the filesystem to be used in the image type. This only has an effect
if the selected binary image type does allow to choose a filesystem. For
example, when selection iso the resulting CD/DVD has always the filesystem
-ISO9660. When building usb\-hdd images for usb sticks, this is active. Note
-that it defaults to fat16 on all architectures except sparc where it
-defaults to ext4. Also note that if you choose fat16 and your resulting
-binary image gets bigger than 2GB, the binary filesystem automatically gets
-switched to fat32.
+ISO9660. When building hdd images for usb sticks, this is active. Note that
+it defaults to fat16 on all architectures except sparc where it defaults to
+ext4. Also note that if you choose fat16 and your resulting binary image
+gets bigger than 2GB, the binary filesystem automatically gets switched to
+fat32.
.IP "\fB\-\-bootappend\-install\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4
sets boot parameters specific to debian\-installer, if included.
.IP "\fB\-\-bootappend\-live\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4
@@ -343,8 +343,8 @@ bootloader. For example, if you build a iso, always syslinux (or more
precise, isolinux) is being used. Also note that some combinations of binary
images types and bootloaders may be possible but live\-build does not support
them yet. \fBlb config\fP will fail to create such a not yet supported
-configuration and give a explanation about it. For usb\-hdd images on amd64
-and i386, the default is syslinux. yaboot is only used on powerpc.
+configuration and give a explanation about it. For hdd images on amd64 and
+i386, the default is syslinux. yaboot is only used on powerpc.
.IP "\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap|copy" 4
defines which program is used to bootstrap the debian chroot, default is
debootstrap. Note that if you set the bootstrap program to copy, then your
@@ -727,7 +727,7 @@ build. By default this is false because most people do not require this and
would require to download quite a few source packages. However, once you
start distributing your live image, you should make sure you build it with a
source image alongside.
-.IP "\-s|\fB\-\-source\-images\fP iso|net|tar|usb\-hdd" 4
+.IP "\-s|\fB\-\-source\-images\fP iso|net|tar|hdd" 4
defines the image type for the source image. Default is tar.
.IP "\fB\-\-swap\-file\-path\fP \fIPATH\fP" 4
defines the path to a swap file to create in the binary image. Default is
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index 4bab57c..4881788 100644
--- a/manpages/de/lb_local.de.1
+++ b/manpages/de/lb_local.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb local\fP \- wrapper for local live\-build programs
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index 478d8fb..6be4d88 100644
--- a/manpages/de/lb_source.de.1
+++ b/manpages/de/lb_source.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1
index 7251f04..8c901f4 100644
--- a/manpages/de/lb_source_checksums.de.1
+++ b/manpages/de/lb_source_checksums.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_checksums\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1
index 900739c..457d4f9 100644
--- a/manpages/de/lb_source_debian-live.de.1
+++ b/manpages/de/lb_source_debian-live.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_debian\-live\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1
index 8791449..3ef1d93 100644
--- a/manpages/de/lb_source_debian.de.1
+++ b/manpages/de/lb_source_debian.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_debian\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1
index 24f33bf..1ac9c3e 100644
--- a/manpages/de/lb_source_disk.de.1
+++ b/manpages/de/lb_source_disk.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_disk\fP \- Complete the source stage
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_source_hdd.de.1
similarity index 79%
copy from manpages/de/lb_binary_tar.de.1
copy to manpages/de/lb_source_hdd.de.1
index 58e7cba..c48ce24 100644
--- a/manpages/de/lb_binary_tar.de.1
+++ b/manpages/de/lb_source_hdd.de.1
@@ -3,22 +3,22 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
-\fBlb binary_tar\fP \- Complete the binary stage
+\fBlb source_hdd\fP \- Complete the source stage
.SH SYNOPSIS
-\fBlb binary_tar\fP [\fIlive\-build options\fP]
+\fBlb source_hdd\fP [\fIlive\-build options\fP]
.SH DESCRIPTION
-\fBlb binary_tar\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7), the
+\fBlb source_hdd\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7), the
Debian Live tool suite.
.PP
.\" FIXME
.SH OPTIONS
-\fBlb binary_tar\fP has no specific options but understands all generic
+\fBlb source_hdd\fP has no specific options but understands all generic
live\-build options. See \fIlive\-build\fP(7) for a complete list of all generic
live\-build options.
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index 7c82175..564f485 100644
--- a/manpages/de/lb_source_iso.de.1
+++ b/manpages/de/lb_source_iso.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_iso\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_net.de.1 b/manpages/de/lb_source_net.de.1
index 026094e..f27d3a5 100644
--- a/manpages/de/lb_source_net.de.1
+++ b/manpages/de/lb_source_net.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_net\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1
index 3870da5..f90b760 100644
--- a/manpages/de/lb_source_tar.de.1
+++ b/manpages/de/lb_source_tar.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_tar\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_usb.de.1 b/manpages/de/lb_source_usb.de.1
deleted file mode 100644
index e7612c6..0000000
--- a/manpages/de/lb_source_usb.de.1
+++ /dev/null
@@ -1,47 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
-
-.SH NAME
-\fBlb source_usb\fP \- Complete the source stage
-
-.SH SYNOPSIS
-\fBlb source_usb\fP [\fIlive\-build options\fP]
-
-.SH DESCRIPTION
-\fBlb source_usb\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7), the
-Debian Live tool suite.
-.PP
-
-.\" FIXME
-.SH OPTIONS
-\fBlb source_usb\fP has no specific options but understands all generic
-live\-build options. See \fIlive\-build\fP(7) for a complete list of all generic
-live\-build options.
-
-.SH FILES
-.\" FIXME
-.IP \fBn/a\fP 4
-
-.SH "SEE ALSO"
-\fIlive\-build\fP(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found
-on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
-<\fIhttp://live.debian.net/manual/\fP>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in
-the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
-writing a mail to the Debian Live mailing list at
-<\fIdebian\-live at lists.debian.org\fP>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fP> for
-the Debian project.
diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1
index c079200..0731b62 100644
--- a/manpages/de/lb_source_virtual-hdd.de.1
+++ b/manpages/de/lb_source_virtual-hdd.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb source_virtual\-hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index 64a3989..6f39280 100644
--- a/manpages/de/lb_testroot.de.1
+++ b/manpages/de/lb_testroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlb testroot\fP \- Ensure that a system is built as root
diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7
index 993f653..7138bd3 100644
--- a/manpages/de/live-build.de.7
+++ b/manpages/de/live-build.de.7
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 7 2011\-09\-07 3.0~a31\-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-09\-27 3.0~a32\-1 "Debian Live Project"
.SH NAME
\fBlive\-build\fP \- the Debian Live tool suite
@@ -205,8 +205,8 @@ installs silo into binary
installs syslinux into binary
.IP \fBlb_binary_tar\fP(1) 4
build harddisk binary image
-.IP \fBlb_binary_usb\fP(1) 4
-build binary usb\-hdd image
+.IP \fBlb_binary_hdd\fP(1) 4
+build binary hdd image
.IP \fBlb_binary_virtual\-hdd\fP(1) 4
build binary virtual\-hdd image
.IP \fBlb_binary_win32\-loader\fP(1) 4
@@ -228,8 +228,8 @@ create source checksums (md5, sha1, and/or sha256)
build source net image
.IP \fBlb_source_tar\fP(1) 4
build source tarball
-.IP \fBlb_source_usb\fP(1) 4
-build source usb\-hdd image
+.IP \fBlb_source_hdd\fP(1) 4
+build source hdd image
.IP \fBlb_source_virtual\-hdd\fP(1) 4
.\" FIXME
build source virtual\-hdd image
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index ec6b21a..3018e5d 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb\fR \- wrapper for live\-build programs
diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1
index 06ea344..19b3283 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_checksums.1 b/manpages/en/lb_binary_checksums.1
index deef341..1f20485 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_chroot.1 b/manpages/en/lb_binary_chroot.1
index eb6bf7c..117287a 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_debian-installer.1 b/manpages/en/lb_binary_debian-installer.1
index 802d8d7..c7b66a2 100644
--- a/manpages/en/lb_binary_debian-installer.1
+++ b/manpages/en/lb_binary_debian-installer.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_disk.1 b/manpages/en/lb_binary_disk.1
index dbf09b1..74a24cc 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1
index fd8da96..b23a03a 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub2.1 b/manpages/en/lb_binary_grub2.1
index fb8b4dc..d11220a 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_usb.1 b/manpages/en/lb_binary_hdd.1
similarity index 75%
rename from manpages/en/lb_binary_usb.1
rename to manpages/en/lb_binary_hdd.1
index 8c3ee6c..26ba1d7 100644
--- a/manpages/en/lb_binary_usb.1
+++ b/manpages/en/lb_binary_hdd.1
@@ -1,18 +1,18 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
-\fBlb binary_usb\fR \- Complete the binary stage
+\fBlb binary_hdd\fR \- Complete the binary stage
.SH SYNOPSIS
-\fBlb binary_usb\fR [\fIlive\-buillive\-build]
+\fBlb binary_hdd\fR [\fIlive\-buillive\-build]
.SH DESCRIPTION
-\fBlb binary_usb\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
+\fBlb binary_hdd\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
.PP
.\" FIXME
.SH OPTIONS
-\fBlb binary_usb\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
+\fBlb binary_hdd\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
.SH FILES
.\" FIXME
diff --git a/manpages/en/lb_binary_hooks.1 b/manpages/en/lb_binary_hooks.1
index db7fe8f..83a4973 100644
--- a/manpages/en/lb_binary_hooks.1
+++ b/manpages/en/lb_binary_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1
index d14a866..bd3c11f 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_iso.1 b/manpages/en/lb_binary_iso.1
index 09953ae..d009359 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_linux-image.1 b/manpages/en/lb_binary_linux-image.1
index 7903bdb..f65f12e 100644
--- a/manpages/en/lb_binary_linux-image.1
+++ b/manpages/en/lb_binary_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1
index 4d9bb30..810e6a4 100644
--- a/manpages/en/lb_binary_local-includes.1
+++ b/manpages/en/lb_binary_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index c56a457..dd40aac 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_memtest.1 b/manpages/en/lb_binary_memtest.1
index 46a82e0..ecef658 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_net.1 b/manpages/en/lb_binary_net.1
index b039e1e..583a771 100644
--- a/manpages/en/lb_binary_net.1
+++ b/manpages/en/lb_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_rootfs.1 b/manpages/en/lb_binary_rootfs.1
index 47e380a..738a3bb 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_silo.1 b/manpages/en/lb_binary_silo.1
index 1e67076..92887e8 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_syslinux.1 b/manpages/en/lb_binary_syslinux.1
index 69c484a..c9ea458 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_binary_tar.1
index 4bfff11..e5f1301 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index 5b9c798..dfb9141 100644
--- a/manpages/en/lb_binary_virtual-hdd.1
+++ b/manpages/en/lb_binary_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_win32-loader.1 b/manpages/en/lb_binary_win32-loader.1
index 583c74c..4545716 100644
--- a/manpages/en/lb_binary_win32-loader.1
+++ b/manpages/en/lb_binary_win32-loader.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_yaboot.1 b/manpages/en/lb_binary_yaboot.1
index 6684166..f711489 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1
index 34a2a94..e365ab8 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cache.1 b/manpages/en/lb_bootstrap_cache.1
index 98bab58..afd9442 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cdebootstrap.1 b/manpages/en/lb_bootstrap_cdebootstrap.1
index 86c130e..7618500 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_copy.1 b/manpages/en/lb_bootstrap_copy.1
index fcffa9b..1e4e536 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_debootstrap.1 b/manpages/en/lb_bootstrap_debootstrap.1
index 439a3f0..4d681d1 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1
index 8a00c18..ff7dccb 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1
index d9c70c7..705d65a 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_apt.1 b/manpages/en/lb_chroot_apt.1
index 84bddc1..6368065 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_archives.1 b/manpages/en/lb_chroot_archives.1
index 541e5eb..f4b28b0 100644
--- a/manpages/en/lb_chroot_archives.1
+++ b/manpages/en/lb_chroot_archives.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_archives\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1
index 714cfc3..04dd2d1 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_debianchroot.1 b/manpages/en/lb_chroot_debianchroot.1
index 4a7ea23..15020cd 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_devpts.1 b/manpages/en/lb_chroot_devpts.1
index f7d73d1..1927969 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_dpkg.1 b/manpages/en/lb_chroot_dpkg.1
index e7abfa5..512e6ac 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hacks.1 b/manpages/en/lb_chroot_hacks.1
index 5590444..ccb7a40 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hooks.1 b/manpages/en/lb_chroot_hooks.1
index 3331bf9..17bad95 100644
--- a/manpages/en/lb_chroot_hooks.1
+++ b/manpages/en/lb_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1
index 98901c0..77018cd 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hosts.1 b/manpages/en/lb_chroot_hosts.1
index 50a13e0..41fcdf6 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_install-packages.1 b/manpages/en/lb_chroot_install-packages.1
index f39c4e1..543b1ed 100644
--- a/manpages/en/lb_chroot_install-packages.1
+++ b/manpages/en/lb_chroot_install-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_interactive.1 b/manpages/en/lb_chroot_interactive.1
index 8e45e32..0819f86 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_linux-image.1 b/manpages/en/lb_chroot_linux-image.1
index 8b03287..8518f03 100644
--- a/manpages/en/lb_chroot_linux-image.1
+++ b/manpages/en/lb_chroot_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 0b39158..74b71d7 100644
--- a/manpages/en/lb_chroot_local-includes.1
+++ b/manpages/en/lb_chroot_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index 42893fb..85db31a 100644
--- a/manpages/en/lb_chroot_local-patches.1
+++ b/manpages/en/lb_chroot_local-patches.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-preseed.1 b/manpages/en/lb_chroot_local-preseed.1
index 4e1799f..4166c28 100644
--- a/manpages/en/lb_chroot_local-preseed.1
+++ b/manpages/en/lb_chroot_local-preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packagelists.1 b/manpages/en/lb_chroot_packagelists.1
index b81625a..7ec8504 100644
--- a/manpages/en/lb_chroot_packagelists.1
+++ b/manpages/en/lb_chroot_packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1
index 95e3892..2a8415f 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_preseed.1 b/manpages/en/lb_chroot_preseed.1
index 0e99315..e9562e5 100644
--- a/manpages/en/lb_chroot_preseed.1
+++ b/manpages/en/lb_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1
index f9db795..9060220 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_resolv.1 b/manpages/en/lb_chroot_resolv.1
index 7486b86..14dee28 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_selinuxfs.1 b/manpages/en/lb_chroot_selinuxfs.1
index dacb1a5..f18d348 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1
index b33b695..70e5e47 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysv-rc.1 b/manpages/en/lb_chroot_sysv-rc.1
index d8d63e7..7f1dea0 100644
--- a/manpages/en/lb_chroot_sysv-rc.1
+++ b/manpages/en/lb_chroot_sysv-rc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_task-lists.1 b/manpages/en/lb_chroot_task-lists.1
index fde38e7..8879747 100644
--- a/manpages/en/lb_chroot_task-lists.1
+++ b/manpages/en/lb_chroot_task-lists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_task\-lists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1
index 3edd13d..19d2027 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1
index 733a4c5..4823414 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb clean\fR \- Clean build directory
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index 0ca77d8..46bfea1 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb config\fR \- Create config directory
@@ -31,7 +31,7 @@
.br
[\-a|\fB\-\-architectures\fR \fIARCHITECTURE\fR]
.br
- [\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|usb\-hdd|virtual\-hdd]
+ [\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|hdd|virtual\-hdd]
.br
[\fB\-\-binary\-filesystem\fR fat16|fat32|ext2|ext3|ext4]
.br
@@ -215,7 +215,7 @@
.br
[\fB\-\-source\fR true|false]
.br
- [\-s|\fB\-\-source\-images\fR iso|net|tar|usb\-hdd]
+ [\-s|\fB\-\-source\-images\fR iso|net|tar|hdd]
.br
[\fB\-\-syslinux\-theme\fR \fITHEME_SUFFIX\fR]
.br
@@ -273,16 +273,16 @@ defines if apt should check repository signatures. This is true by default.
defines if deb-src entries should be included in the resulting live image or not, defaults to on.
.IP "\-a|\fB\-\-architectures\fR \fIARCHITECTURE\fR" 4
defines the architecture of the to be build image. By default, this is set to the host architecture. Note that you cannot crossbuild for another architecture if your host system is not able to execute binaries for the target architecture natively. For example, building amd64 images on i386 and vice versa is possile if you have a 64bit capable i386 processor and the right kernel. But building powerpc images on an i386 system is not possible.
-.IP "\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|usb\-hdd" 4
-defines the image type to build. By default, for images using syslinux this is set to iso\-hybrid to build CD/DVD images that may also be used like usb\-hdd images, for non\-syslinux images, it defaults to iso.
+.IP "\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|hdd" 4
+defines the image type to build. By default, for images using syslinux this is set to iso\-hybrid to build CD/DVD images that may also be used like hdd images, for non\-syslinux images, it defaults to iso.
.IP "\fB\-\-binary\-filesystem\fR fat16|fat32|ext2|ext3|ext4" 4
-defines the filesystem to be used in the image type. This only has an effect if the selected binary image type does allow to choose a filesystem. For example, when selection iso the resulting CD/DVD has always the filesystem ISO9660. When building usb\-hdd images for usb sticks, this is active. Note that it defaults to fat16 on all architectures except sparc where it defaults to ext4. Also note that if you choose fat16 and your resulting binary image gets bigger than 2GB, the binary filesystem automatically gets switched to fat32.
+defines the filesystem to be used in the image type. This only has an effect if the selected binary image type does allow to choose a filesystem. For example, when selection iso the resulting CD/DVD has always the filesystem ISO9660. When building hdd images for usb sticks, this is active. Note that it defaults to fat16 on all architectures except sparc where it defaults to ext4. Also note that if you choose fat16 and your resulting binary image gets bigger than 2GB, the binary filesystem automatically gets switched to fat32.
.IP "\fB\-\-bootappend\-install\fR \fIPARAMETER\fR|""\fIPARAMETERS\fR""" 4
sets boot parameters specific to debian\-installer, if included.
.IP "\fB\-\-bootappend\-live\fR \fIPARAMETER\fR|""\fIPARAMETERS\fR""" 4
sets boot parameters specific to debian\-live. A complete list of boot parameters can be found in the \fIlive\-boot\fR(7) and \fIlive\-config\fR(7) manual pages.
.IP "\fB\-\-bootloader\fR grub|syslinux|yaboot" 4
-defines which bootloader is beeing used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-build does not support them yet. \fBlb config\fR will fail to create such a not yet supported configuration and give a explanation about it. For usb\-hdd images on amd64 and i386, the default is syslinux. yaboot is only used on powerpc.
+defines which bootloader is beeing used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-build does not support them yet. \fBlb config\fR will fail to create such a not yet supported configuration and give a explanation about it. For hdd images on amd64 and i386, the default is syslinux. yaboot is only used on powerpc.
.IP "\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap|copy" 4
defines which program is used to bootstrap the debian chroot, default is debootstrap. Note that if you set the bootstrap program to copy, then your host system is copied. This can be useful if you want to convert/clone your existing host system into a live system, however, make sure you do have enough free space as this can, depending on your host system, get quite big.
.IP "\-f|\fB\-\-bootstrap\-flavour\fR minimal|standard" 4
@@ -462,7 +462,7 @@ defines which package archive areas of a debian packages archive should be used
defines if the security repositories specified in the security mirror options should be used or not.
.IP "\fB\-\-source\fR true|false" 4
defines if a corresponding source image to the binary image should be build. By default this is false because most people do not require this and would require to download quite a few source packages. However, once you start distributing your live image, you should make sure you build it with a source image alongside.
-.IP "\-s|\fB\-\-source\-images\fR iso|net|tar|usb\-hdd" 4
+.IP "\-s|\fB\-\-source\-images\fR iso|net|tar|hdd" 4
defines the image type for the source image. Default is tar.
.IP "\fB\-\-swap\-file\-path\fR \fIPATH\fR" 4
defines the path to a swap file to create in the binary image. Default is not to create a swap file.
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
index 0012faa..bd05f19 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb local\fR \- wrapper for local live\-build programs
diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1
index d1b1cbf..eec41e6 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_checksums.1 b/manpages/en/lb_source_checksums.1
index 5068a9a..d4ede05 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian-live.1 b/manpages/en/lb_source_debian-live.1
index c3dddb0..8840537 100644
--- a/manpages/en/lb_source_debian-live.1
+++ b/manpages/en/lb_source_debian-live.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian.1 b/manpages/en/lb_source_debian.1
index 1b168e7..d972b9a 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_disk.1 b/manpages/en/lb_source_disk.1
index e08f251..8232628 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_source_hdd.1
similarity index 75%
copy from manpages/en/lb_binary_tar.1
copy to manpages/en/lb_source_hdd.1
index 4bfff11..cc204fc 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_source_hdd.1
@@ -1,18 +1,18 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
-\fBlb binary_tar\fR \- Complete the binary stage
+\fBlb source_hdd\fR \- Complete the source stage
.SH SYNOPSIS
-\fBlb binary_tar\fR [\fIlive\-build options\fR]
+\fBlb source_hdd\fR [\fIlive\-build options\fR]
.SH DESCRIPTION
-\fBlb binary_tar\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
+\fBlb source_hdd\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
.PP
.\" FIXME
.SH OPTIONS
-\fBlb binary_tar\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
+\fBlb source_hdd\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
.SH FILES
.\" FIXME
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index c72d41d..d4fb281 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_net.1 b/manpages/en/lb_source_net.1
index edd536d..9024706 100644
--- a/manpages/en/lb_source_net.1
+++ b/manpages/en/lb_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_net\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1
index e40ef36..1418f71 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_usb.1 b/manpages/en/lb_source_usb.1
deleted file mode 100644
index ceef70f..0000000
--- a/manpages/en/lb_source_usb.1
+++ /dev/null
@@ -1,33 +0,0 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
-
-.SH NAME
-\fBlb source_usb\fR \- Complete the source stage
-
-.SH SYNOPSIS
-\fBlb source_usb\fR [\fIlive\-build options\fR]
-
-.SH DESCRIPTION
-\fBlb source_usb\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
-.PP
-.\" FIXME
-
-.SH OPTIONS
-\fBlb source_usb\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
-
-.SH FILES
-.\" FIXME
-.IP "\fBn/a\fR" 4
-
-.SH SEE ALSO
-\fIlive\-build\fR(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live at lists.debian.org\fR>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index fa2e9c9..78958cf 100644
--- a/manpages/en/lb_source_virtual-hdd.1
+++ b/manpages/en/lb_source_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1
index b8ce53b..ac50199 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlb testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7
index e1de0f3..c7afc03 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2011\-09\-07 3.0~a31-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-09\-27 3.0~a32-1 "Debian Live Project"
.SH NAME
\fBlive\-build\fR \- the Debian Live tool suite
@@ -182,8 +182,8 @@ installs silo into binary
installs syslinux into binary
.IP "\fBlb_binary_tar\fR(1)" 4
build harddisk binary image
-.IP "\fBlb_binary_usb\fR(1)" 4
-build binary usb\-hdd image
+.IP "\fBlb_binary_hdd\fR(1)" 4
+build binary hdd image
.IP "\fBlb_binary_virtual\-hdd\fR(1)" 4
build binary virtual\-hdd image
.IP "\fBlb_binary_win32\-loader\fR(1)" 4
@@ -205,8 +205,8 @@ create source checksums (md5, sha1, and/or sha256)
build source net image
.IP "\fBlb_source_tar\fR(1)" 4
build source tarball
-.IP "\fBlb_source_usb\fR(1)" 4
-build source usb\-hdd image
+.IP "\fBlb_source_hdd\fR(1)" 4
+build source hdd image
.IP "\fBlb_source_virtual\-hdd\fR(1)" 4
build source virtual\-hdd image
.\" FIXME
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index b3a8e4e..e977cbc 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -185,29 +185,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -227,29 +227,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -266,13 +266,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -289,8 +289,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -308,13 +308,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -331,8 +331,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -349,13 +349,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -372,8 +372,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -383,13 +383,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -406,8 +406,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -416,13 +416,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -439,8 +439,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -449,13 +449,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -472,8 +472,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -483,13 +483,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -506,8 +506,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -519,13 +519,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -542,8 +542,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -590,13 +590,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -613,8 +613,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -624,13 +624,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -647,8 +647,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index 47c87eb..246143a 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index 20502da..4949683 100644
--- a/manpages/po/de/lb_binary_checksums.1.po
+++ b/manpages/po/de/lb_binary_checksums.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -647,12 +647,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -669,8 +669,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 19b692d..b22da39 100644
--- a/manpages/po/de/lb_binary_chroot.1.po
+++ b/manpages/po/de/lb_binary_chroot.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po
index bf006f9..250c650 100644
--- a/manpages/po/de/lb_binary_debian-installer.1.po
+++ b/manpages/po/de/lb_binary_debian-installer.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index 0f02c26..c22d9ab 100644
--- a/manpages/po/de/lb_binary_disk.1.po
+++ b/manpages/po/de/lb_binary_disk.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index 3e0d09e..e461dc8 100644
--- a/manpages/po/de/lb_binary_grub.1.po
+++ b/manpages/po/de/lb_binary_grub.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index dd1b72e..86202f9 100644
--- a/manpages/po/de/lb_binary_grub2.1.po
+++ b/manpages/po/de/lb_binary_grub2.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_usb.1.po b/manpages/po/de/lb_binary_hdd.1.po
similarity index 51%
rename from manpages/po/de/lb_binary_usb.1.po
rename to manpages/po/de/lb_binary_hdd.1.po
index 4bb0598..ca7e68f 100644
--- a/manpages/po/de/lb_binary_usb.1.po
+++ b/manpages/po/de/lb_binary_hdd.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,33 +644,33 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:5
-msgid "B<lb binary_usb> - Complete the binary stage"
+#: en/lb_binary_hdd.1:5
+msgid "B<lb binary_hdd> - Complete the binary stage"
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:8
-msgid "B<lb binary_usb> [I<live-buillive-build]>"
+#: en/lb_binary_hdd.1:8
+msgid "B<lb binary_hdd> [I<live-buillive-build]>"
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:11
+#: en/lb_binary_hdd.1:11
msgid ""
-"B<lb binary_usb> is a low-level command (plumbing) of I<live-build>(7), the "
+"B<lb binary_hdd> is a low-level command (plumbing) of I<live-build>(7), the "
"Debian Live tool suite."
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:16
+#: en/lb_binary_hdd.1:16
msgid ""
-"B<lb binary_usb> has no specific options but understands all generic live-"
+"B<lb binary_hdd> has no specific options but understands all generic live-"
"build options. See I<live-build>(7) for a complete list of all generic live-"
"build options."
msgstr ""
diff --git a/manpages/po/de/lb_binary_hooks.1.po b/manpages/po/de/lb_binary_hooks.1.po
index eea321b..ffadcd8 100644
--- a/manpages/po/de/lb_binary_hooks.1.po
+++ b/manpages/po/de/lb_binary_hooks.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index 227686f..94185b6 100644
--- a/manpages/po/de/lb_binary_includes.1.po
+++ b/manpages/po/de/lb_binary_includes.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index a8d08fd..886578f 100644
--- a/manpages/po/de/lb_binary_iso.1.po
+++ b/manpages/po/de/lb_binary_iso.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po
index fc9f221..4a35008 100644
--- a/manpages/po/de/lb_binary_linux-image.1.po
+++ b/manpages/po/de/lb_binary_linux-image.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po
index f29d64a..9ecf38a 100644
--- a/manpages/po/de/lb_binary_local-includes.1.po
+++ b/manpages/po/de/lb_binary_local-includes.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index 6ff6991..cfbf09d 100644
--- a/manpages/po/de/lb_binary_manifest.1.po
+++ b/manpages/po/de/lb_binary_manifest.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index c1a0c38..57f4abc 100644
--- a/manpages/po/de/lb_binary_memtest.1.po
+++ b/manpages/po/de/lb_binary_memtest.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po
index c9aae0c..38e953d 100644
--- a/manpages/po/de/lb_binary_net.1.po
+++ b/manpages/po/de/lb_binary_net.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index d091a94..7638a5d 100644
--- a/manpages/po/de/lb_binary_rootfs.1.po
+++ b/manpages/po/de/lb_binary_rootfs.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index 622650b..1fa4f89 100644
--- a/manpages/po/de/lb_binary_silo.1.po
+++ b/manpages/po/de/lb_binary_silo.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 1e63d66..ab32160 100644
--- a/manpages/po/de/lb_binary_syslinux.1.po
+++ b/manpages/po/de/lb_binary_syslinux.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index 5698958..dd02c9a 100644
--- a/manpages/po/de/lb_binary_tar.1.po
+++ b/manpages/po/de/lb_binary_tar.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po
index 48acc02..27129bc 100644
--- a/manpages/po/de/lb_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lb_binary_virtual-hdd.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po
index c150008..980f190 100644
--- a/manpages/po/de/lb_binary_win32-loader.1.po
+++ b/manpages/po/de/lb_binary_win32-loader.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index 98e9841..4d30e65 100644
--- a/manpages/po/de/lb_binary_yaboot.1.po
+++ b/manpages/po/de/lb_binary_yaboot.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index 7c9435b..a34309c 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index 7f0b8de..ed33935 100644
--- a/manpages/po/de/lb_bootstrap_cache.1.po
+++ b/manpages/po/de/lb_bootstrap_cache.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index 30900c6..bca5a87 100644
--- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index 33704f3..4aa1380 100644
--- a/manpages/po/de/lb_bootstrap_copy.1.po
+++ b/manpages/po/de/lb_bootstrap_copy.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index 4fbb5ec..e4e06f3 100644
--- a/manpages/po/de/lb_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index da1e3c6..128e109 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 0428a69..5e9f228 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index a255969..d776455 100644
--- a/manpages/po/de/lb_chroot_apt.1.po
+++ b/manpages/po/de/lb_chroot_apt.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_archives.1.po b/manpages/po/de/lb_chroot_archives.1.po
index e9edfbf..9207bb4 100644
--- a/manpages/po/de/lb_chroot_archives.1.po
+++ b/manpages/po/de/lb_chroot_archives.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index fb89719..fcc90c7 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_cache.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index 43b9e87..5d666e5 100644
--- a/manpages/po/de/lb_chroot_debianchroot.1.po
+++ b/manpages/po/de/lb_chroot_debianchroot.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index 9dde93f..048faba 100644
--- a/manpages/po/de/lb_chroot_devpts.1.po
+++ b/manpages/po/de/lb_chroot_devpts.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index db7acaa..00c3a2c 100644
--- a/manpages/po/de/lb_chroot_dpkg.1.po
+++ b/manpages/po/de/lb_chroot_dpkg.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index 4e98812..1b8cf5c 100644
--- a/manpages/po/de/lb_chroot_hacks.1.po
+++ b/manpages/po/de/lb_chroot_hacks.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_hooks.1.po b/manpages/po/de/lb_chroot_hooks.1.po
index 16507d3..75d5f98 100644
--- a/manpages/po/de/lb_chroot_hooks.1.po
+++ b/manpages/po/de/lb_chroot_hooks.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index c4ca480..09940dc 100644
--- a/manpages/po/de/lb_chroot_hostname.1.po
+++ b/manpages/po/de/lb_chroot_hostname.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index 3d00e48..6f3fa65 100644
--- a/manpages/po/de/lb_chroot_hosts.1.po
+++ b/manpages/po/de/lb_chroot_hosts.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po
index 9f2b574..e842b51 100644
--- a/manpages/po/de/lb_chroot_install-packages.1.po
+++ b/manpages/po/de/lb_chroot_install-packages.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index d89314c..e8a19d1 100644
--- a/manpages/po/de/lb_chroot_interactive.1.po
+++ b/manpages/po/de/lb_chroot_interactive.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po
index e723808..a25cddf 100644
--- a/manpages/po/de/lb_chroot_linux-image.1.po
+++ b/manpages/po/de/lb_chroot_linux-image.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po
index 45b480f..a44b4be 100644
--- a/manpages/po/de/lb_chroot_local-includes.1.po
+++ b/manpages/po/de/lb_chroot_local-includes.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po
index 5d82f9e..373482c 100644
--- a/manpages/po/de/lb_chroot_local-patches.1.po
+++ b/manpages/po/de/lb_chroot_local-patches.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po
index fc2432d..bbf7254 100644
--- a/manpages/po/de/lb_chroot_local-preseed.1.po
+++ b/manpages/po/de/lb_chroot_local-preseed.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po
index 79a6c93..3302745 100644
--- a/manpages/po/de/lb_chroot_packagelists.1.po
+++ b/manpages/po/de/lb_chroot_packagelists.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 2fd498f..36acc5e 100644
--- a/manpages/po/de/lb_chroot_packages.1.po
+++ b/manpages/po/de/lb_chroot_packages.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_preseed.1.po b/manpages/po/de/lb_chroot_preseed.1.po
index b87da81..ef8e3bb 100644
--- a/manpages/po/de/lb_chroot_preseed.1.po
+++ b/manpages/po/de/lb_chroot_preseed.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index 30ddddd..a1d1b78 100644
--- a/manpages/po/de/lb_chroot_proc.1.po
+++ b/manpages/po/de/lb_chroot_proc.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 2a8b7c6..71b6944 100644
--- a/manpages/po/de/lb_chroot_resolv.1.po
+++ b/manpages/po/de/lb_chroot_resolv.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index 961235a..ff0171f 100644
--- a/manpages/po/de/lb_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lb_chroot_selinuxfs.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index e0b2dce..5af454e 100644
--- a/manpages/po/de/lb_chroot_sysfs.1.po
+++ b/manpages/po/de/lb_chroot_sysfs.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po
index c0962e5..aea2969 100644
--- a/manpages/po/de/lb_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lb_chroot_sysv-rc.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_task-lists.1.po b/manpages/po/de/lb_chroot_task-lists.1.po
index 779c53b..2ae277a 100644
--- a/manpages/po/de/lb_chroot_task-lists.1.po
+++ b/manpages/po/de/lb_chroot_task-lists.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index eb5744a..fd50df4 100644
--- a/manpages/po/de/lb_chroot_upstart.1.po
+++ b/manpages/po/de/lb_chroot_upstart.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index 79f0ed5..f825ec7 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index 2abd006..abdbd29 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -691,7 +691,7 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:35
-msgid " [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd|virtual-hdd]"
+msgid " [-b|B<--binary-images> iso|iso-hybrid|net|tar|hdd|virtual-hdd]"
msgstr ""
#. type: Plain text
@@ -1152,7 +1152,7 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:219
-msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
+msgid " [-s|B<--source-images> iso|net|tar|hdd]"
msgstr ""
#. type: Plain text
@@ -1406,15 +1406,15 @@ msgstr ""
#. type: IP
#: en/lb_config.1:276
#, no-wrap
-msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
+msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|hdd"
msgstr ""
#. type: Plain text
#: en/lb_config.1:278
msgid ""
"defines the image type to build. By default, for images using syslinux this "
-"is set to iso-hybrid to build CD/DVD images that may also be used like usb-"
-"hdd images, for non-syslinux images, it defaults to iso."
+"is set to iso-hybrid to build CD/DVD images that may also be used like hdd "
+"images, for non-syslinux images, it defaults to iso."
msgstr ""
#. type: IP
@@ -1429,11 +1429,11 @@ msgid ""
"defines the filesystem to be used in the image type. This only has an effect "
"if the selected binary image type does allow to choose a filesystem. For "
"example, when selection iso the resulting CD/DVD has always the filesystem "
-"ISO9660. When building usb-hdd images for usb sticks, this is active. Note "
-"that it defaults to fat16 on all architectures except sparc where it "
-"defaults to ext4. Also note that if you choose fat16 and your resulting "
-"binary image gets bigger than 2GB, the binary filesystem automatically gets "
-"switched to fat32."
+"ISO9660. When building hdd images for usb sticks, this is active. Note that "
+"it defaults to fat16 on all architectures except sparc where it defaults to "
+"ext4. Also note that if you choose fat16 and your resulting binary image "
+"gets bigger than 2GB, the binary filesystem automatically gets switched to "
+"fat32."
msgstr ""
#. type: IP
@@ -1476,8 +1476,8 @@ msgid ""
"precise, isolinux) is being used. Also note that some combinations of binary "
"images types and bootloaders may be possible but live-build does not support "
"them yet. B<lb config> will fail to create such a not yet supported "
-"configuration and give a explanation about it. For usb-hdd images on amd64 "
-"and i386, the default is syslinux. yaboot is only used on powerpc."
+"configuration and give a explanation about it. For hdd images on amd64 and "
+"i386, the default is syslinux. yaboot is only used on powerpc."
msgstr ""
#. type: IP
@@ -2723,7 +2723,7 @@ msgstr ""
#. type: IP
#: en/lb_config.1:465
#, no-wrap
-msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
+msgid "-s|B<--source-images> iso|net|tar|hdd"
msgstr ""
#. type: Plain text
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
index 5b825e1..5ecdd63 100644
--- a/manpages/po/de/lb_local.1.po
+++ b/manpages/po/de/lb_local.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index 0943fb7..2ed3e83 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index be00258..ba52d96 100644
--- a/manpages/po/de/lb_source_checksums.1.po
+++ b/manpages/po/de/lb_source_checksums.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po
index cfd2bfc..4f788e4 100644
--- a/manpages/po/de/lb_source_debian-live.1.po
+++ b/manpages/po/de/lb_source_debian-live.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index df1294b..8de7991 100644
--- a/manpages/po/de/lb_source_debian.1.po
+++ b/manpages/po/de/lb_source_debian.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index b02c042..ec37dbf 100644
--- a/manpages/po/de/lb_source_disk.1.po
+++ b/manpages/po/de/lb_source_disk.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_hdd.1.po
similarity index 51%
copy from manpages/po/de/lb_source_tar.1.po
copy to manpages/po/de/lb_source_hdd.1.po
index bdc11e1..191481c 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_hdd.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,33 +644,33 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: Plain text
-#: en/lb_source_tar.1:5
-msgid "B<lb source_tar> - Complete the source stage"
+#: en/lb_source_hdd.1:5
+msgid "B<lb source_hdd> - Complete the source stage"
msgstr ""
#. type: Plain text
-#: en/lb_source_tar.1:8
-msgid "B<lb source_tar> [I<live-build options>]"
+#: en/lb_source_hdd.1:8
+msgid "B<lb source_hdd> [I<live-build options>]"
msgstr ""
#. type: Plain text
-#: en/lb_source_tar.1:11
+#: en/lb_source_hdd.1:11
msgid ""
-"B<lb source_tar> is a low-level command (plumbing) of I<live-build>(7), the "
+"B<lb source_hdd> is a low-level command (plumbing) of I<live-build>(7), the "
"Debian Live tool suite."
msgstr ""
#. type: Plain text
-#: en/lb_source_tar.1:16
+#: en/lb_source_hdd.1:16
msgid ""
-"B<lb source_tar> has no specific options but understands all generic live-"
+"B<lb source_hdd> has no specific options but understands all generic live-"
"build options. See I<live-build>(7) for a complete list of all generic live-"
"build options."
msgstr ""
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index 435d7b2..bc095a2 100644
--- a/manpages/po/de/lb_source_iso.1.po
+++ b/manpages/po/de/lb_source_iso.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po
index 03f8705..7141c0b 100644
--- a/manpages/po/de/lb_source_net.1.po
+++ b/manpages/po/de/lb_source_net.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index bdc11e1..57c07fc 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_tar.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_source_usb.1.po b/manpages/po/de/lb_source_usb.1.po
deleted file mode 100644
index 0855506..0000000
--- a/manpages/po/de/lb_source_usb.1.po
+++ /dev/null
@@ -1,676 +0,0 @@
-# German translations for live-build package
-# Copyright (C) 2011 Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# Automatically generated, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ASCII\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-09-07"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a31-1"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
-#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
-#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
-#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
-#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
-#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
-#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
-#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
-#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
-#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
-#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sysfs.1:14
-#: en/lb_chroot_sysv-rc.1:14 en/lb_chroot_task-lists.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
-#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
-#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
-#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
-#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
-#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
-#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
-#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
-#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
-#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sysfs.1:17
-#: en/lb_chroot_sysv-rc.1:17 en/lb_chroot_task-lists.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
-#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
-#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
-#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
-#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
-#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
-#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
-#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
-#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
-#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sysfs.1:21
-#: en/lb_chroot_sysv-rc.1:21 en/lb_chroot_task-lists.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
-#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
-#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
-#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
-#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
-#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
-#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
-#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
-#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
-#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sysfs.1:23
-#: en/lb_chroot_sysv-rc.1:23 en/lb_chroot_task-lists.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
-#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
-#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
-#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
-#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
-#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
-#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
-#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
-#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
-#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sysfs.1:25
-#: en/lb_chroot_sysv-rc.1:25 en/lb_chroot_task-lists.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
-#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
-#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
-#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
-#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
-#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
-#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
-#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
-#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
-#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sysfs.1:26
-#: en/lb_chroot_sysv-rc.1:26 en/lb_chroot_task-lists.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
-#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
-#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
-#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
-#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
-#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
-#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
-#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
-#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
-#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sysfs.1:28
-#: en/lb_chroot_sysv-rc.1:28 en/lb_chroot_task-lists.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
-#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
-#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
-#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
-#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
-#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
-#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
-#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
-#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
-#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sysfs.1:29
-#: en/lb_chroot_sysv-rc.1:29 en/lb_chroot_task-lists.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
-#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
-#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
-#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
-#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
-#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
-#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
-#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
-#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
-#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sysfs.1:31
-#: en/lb_chroot_sysv-rc.1:31 en/lb_chroot_task-lists.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
-#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
-#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
-#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
-#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
-#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
-#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
-#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
-#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
-#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sysfs.1:32
-#: en/lb_chroot_sysv-rc.1:32 en/lb_chroot_task-lists.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
-#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
-#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
-#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
-#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
-#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
-#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
-#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
-#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
-#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sysfs.1:33
-#: en/lb_chroot_sysv-rc.1:33 en/lb_chroot_task-lists.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
-#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
-#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#. FIXME
-#. type: IP
-#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
-#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
-#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
-#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
-#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
-#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
-#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
-#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
-#: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
-#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
-#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
-#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
-#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
-#: en/lb_chroot_local-patches.1:19 en/lb_chroot_local-preseed.1:19
-#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
-#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
-#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sysfs.1:19
-#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
-#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
-#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_source_usb.1:5
-msgid "B<lb source_usb> - Complete the source stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_source_usb.1:8
-msgid "B<lb source_usb> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_source_usb.1:11
-msgid ""
-"B<lb source_usb> is a low-level command (plumbing) of I<live-build>(7), the "
-"Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_source_usb.1:16
-msgid ""
-"B<lb source_usb> has no specific options but understands all generic live-"
-"build options. See I<live-build>(7) for a complete list of all generic live-"
-"build options."
-msgstr ""
diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po
index 88222c8..979e086 100644
--- a/manpages/po/de/lb_source_virtual-hdd.1.po
+++ b/manpages/po/de/lb_source_virtual-hdd.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index 88085a7..373efd7 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index a6802c8..36e1159 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
-"PO-Revision-Date: 2011-08-16 20:48+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
+"PO-Revision-Date: 2011-09-13 09:08+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: de\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -413,13 +413,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -436,8 +436,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -449,13 +449,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -472,8 +472,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -483,13 +483,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -506,8 +506,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -520,13 +520,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -543,8 +543,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -554,13 +554,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -577,8 +577,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -1490,12 +1490,12 @@ msgstr ""
#. type: IP
#: en/live-build.7:185
#, no-wrap
-msgid "B<lb_binary_usb>(1)"
+msgid "B<lb_binary_hdd>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:187
-msgid "build binary usb-hdd image"
+msgid "build binary hdd image"
msgstr ""
#. type: IP
@@ -1617,12 +1617,12 @@ msgstr ""
#. type: IP
#: en/live-build.7:208
#, no-wrap
-msgid "B<lb_source_usb>(1)"
+msgid "B<lb_source_hdd>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:210
-msgid "build source usb-hdd image"
+msgid "build source hdd image"
msgstr ""
#. type: IP
diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg
index 3c1743f..1c86782 100644
--- a/manpages/po4a.cfg
+++ b/manpages/po4a.cfg
@@ -8,6 +8,7 @@
[type: man] en/lb_binary_disk.1 $lang:$lang/lb_binary_disk.$lang.1
[type: man] en/lb_binary_grub.1 $lang:$lang/lb_binary_grub.$lang.1
[type: man] en/lb_binary_grub2.1 $lang:$lang/lb_binary_grub2.$lang.1
+[type: man] en/lb_binary_hdd.1 $lang:$lang/lb_binary_hdd.$lang.1
[type: man] en/lb_binary_hooks.1 $lang:$lang/lb_binary_hooks.$lang.1
[type: man] en/lb_binary_includes.1 $lang:$lang/lb_binary_includes.$lang.1
[type: man] en/lb_binary_iso.1 $lang:$lang/lb_binary_iso.$lang.1
@@ -20,7 +21,6 @@
[type: man] en/lb_binary_silo.1 $lang:$lang/lb_binary_silo.$lang.1
[type: man] en/lb_binary_syslinux.1 $lang:$lang/lb_binary_syslinux.$lang.1
[type: man] en/lb_binary_tar.1 $lang:$lang/lb_binary_tar.$lang.1
-[type: man] en/lb_binary_usb.1 $lang:$lang/lb_binary_usb.$lang.1
[type: man] en/lb_binary_virtual-hdd.1 $lang:$lang/lb_binary_virtual-hdd.$lang.1
[type: man] en/lb_binary_win32-loader.1 $lang:$lang/lb_binary_win32-loader.$lang.1
[type: man] en/lb_binary_yaboot.1 $lang:$lang/lb_binary_yaboot.$lang.1
@@ -65,10 +65,10 @@
[type: man] en/lb_source_debian-live.1 $lang:$lang/lb_source_debian-live.$lang.1
[type: man] en/lb_source_debian.1 $lang:$lang/lb_source_debian.$lang.1
[type: man] en/lb_source_disk.1 $lang:$lang/lb_source_disk.$lang.1
+[type: man] en/lb_source_hdd.1 $lang:$lang/lb_source_hdd.$lang.1
[type: man] en/lb_source_iso.1 $lang:$lang/lb_source_iso.$lang.1
[type: man] en/lb_source_net.1 $lang:$lang/lb_source_net.$lang.1
[type: man] en/lb_source_tar.1 $lang:$lang/lb_source_tar.$lang.1
-[type: man] en/lb_source_usb.1 $lang:$lang/lb_source_usb.$lang.1
[type: man] en/lb_source_virtual-hdd.1 $lang:$lang/lb_source_virtual-hdd.$lang.1
[type: man] en/lb_testroot.1 $lang:$lang/lb_testroot.$lang.1
[type: man] en/live-build.7 $lang:$lang/live-build.$lang.7
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index dc6a7ba..d9801c0 100644
--- a/manpages/pot/lb.1.pot
+++ b/manpages/pot/lb.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -185,29 +185,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -227,29 +227,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -266,13 +266,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -289,8 +289,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -308,13 +308,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -331,8 +331,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -349,13 +349,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -372,8 +372,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -383,13 +383,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -406,8 +406,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -416,13 +416,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -439,8 +439,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -449,13 +449,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -472,8 +472,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -483,13 +483,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -506,8 +506,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -519,13 +519,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -542,8 +542,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -590,13 +590,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -613,8 +613,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -624,13 +624,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -647,8 +647,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 3601c8b..d7fa646 100644
--- a/manpages/pot/lb_binary.1.pot
+++ b/manpages/pot/lb_binary.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index e165e84..48d5df8 100644
--- a/manpages/pot/lb_binary_checksums.1.pot
+++ b/manpages/pot/lb_binary_checksums.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -647,12 +647,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -669,8 +669,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index e8a5abd..7e797a9 100644
--- a/manpages/pot/lb_binary_chroot.1.pot
+++ b/manpages/pot/lb_binary_chroot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index 09b4114..86f3494 100644
--- a/manpages/pot/lb_binary_debian-installer.1.pot
+++ b/manpages/pot/lb_binary_debian-installer.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index d5b99c7..b271268 100644
--- a/manpages/pot/lb_binary_disk.1.pot
+++ b/manpages/pot/lb_binary_disk.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 82ffb89..f535040 100644
--- a/manpages/pot/lb_binary_grub.1.pot
+++ b/manpages/pot/lb_binary_grub.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index 04055d2..7ce7072 100644
--- a/manpages/pot/lb_binary_grub2.1.pot
+++ b/manpages/pot/lb_binary_grub2.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_usb.1.pot b/manpages/pot/lb_binary_hdd.1.pot
similarity index 51%
rename from manpages/pot/lb_binary_usb.1.pot
rename to manpages/pot/lb_binary_hdd.1.pot
index 054a8e5..7e6d815 100644
--- a/manpages/pot/lb_binary_usb.1.pot
+++ b/manpages/pot/lb_binary_hdd.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,33 +644,33 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:5
-msgid "B<lb binary_usb> - Complete the binary stage"
+#: en/lb_binary_hdd.1:5
+msgid "B<lb binary_hdd> - Complete the binary stage"
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:8
-msgid "B<lb binary_usb> [I<live-buillive-build]>"
+#: en/lb_binary_hdd.1:8
+msgid "B<lb binary_hdd> [I<live-buillive-build]>"
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:11
+#: en/lb_binary_hdd.1:11
msgid ""
-"B<lb binary_usb> is a low-level command (plumbing) of I<live-build>(7), the "
+"B<lb binary_hdd> is a low-level command (plumbing) of I<live-build>(7), the "
"Debian Live tool suite."
msgstr ""
#. type: Plain text
-#: en/lb_binary_usb.1:16
+#: en/lb_binary_hdd.1:16
msgid ""
-"B<lb binary_usb> has no specific options but understands all generic live-"
+"B<lb binary_hdd> has no specific options but understands all generic live-"
"build options. See I<live-build>(7) for a complete list of all generic live-"
"build options."
msgstr ""
diff --git a/manpages/pot/lb_binary_hooks.1.pot b/manpages/pot/lb_binary_hooks.1.pot
index d9fd9ae..745653f 100644
--- a/manpages/pot/lb_binary_hooks.1.pot
+++ b/manpages/pot/lb_binary_hooks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index 3e4ac64..028cc3c 100644
--- a/manpages/pot/lb_binary_includes.1.pot
+++ b/manpages/pot/lb_binary_includes.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index f2a1ba4..945ff49 100644
--- a/manpages/pot/lb_binary_iso.1.pot
+++ b/manpages/pot/lb_binary_iso.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index 26c57e9..8479806 100644
--- a/manpages/pot/lb_binary_linux-image.1.pot
+++ b/manpages/pot/lb_binary_linux-image.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index 7883ad2..9904d58 100644
--- a/manpages/pot/lb_binary_local-includes.1.pot
+++ b/manpages/pot/lb_binary_local-includes.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index d49f70f..ebfe10c 100644
--- a/manpages/pot/lb_binary_manifest.1.pot
+++ b/manpages/pot/lb_binary_manifest.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index d47670b..2e0aefc 100644
--- a/manpages/pot/lb_binary_memtest.1.pot
+++ b/manpages/pot/lb_binary_memtest.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot
index 0d92e92..079dc47 100644
--- a/manpages/pot/lb_binary_net.1.pot
+++ b/manpages/pot/lb_binary_net.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 9325310..7b111d1 100644
--- a/manpages/pot/lb_binary_rootfs.1.pot
+++ b/manpages/pot/lb_binary_rootfs.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index 02f3391..f132e7d 100644
--- a/manpages/pot/lb_binary_silo.1.pot
+++ b/manpages/pot/lb_binary_silo.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index ec38997..415135e 100644
--- a/manpages/pot/lb_binary_syslinux.1.pot
+++ b/manpages/pot/lb_binary_syslinux.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index 195181e..6e50f5c 100644
--- a/manpages/pot/lb_binary_tar.1.pot
+++ b/manpages/pot/lb_binary_tar.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index f0633a2..fa592d5 100644
--- a/manpages/pot/lb_binary_virtual-hdd.1.pot
+++ b/manpages/pot/lb_binary_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index a52a59c..09be674 100644
--- a/manpages/pot/lb_binary_win32-loader.1.pot
+++ b/manpages/pot/lb_binary_win32-loader.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index c095455..3c0b936 100644
--- a/manpages/pot/lb_binary_yaboot.1.pot
+++ b/manpages/pot/lb_binary_yaboot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index 211eadc..66a4e57 100644
--- a/manpages/pot/lb_bootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -319,13 +319,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -342,8 +342,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -353,13 +353,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -376,8 +376,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -386,13 +386,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -409,8 +409,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -419,13 +419,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -442,8 +442,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -453,13 +453,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -476,8 +476,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -489,13 +489,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -512,8 +512,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -523,13 +523,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -546,8 +546,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -560,13 +560,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -583,8 +583,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -594,13 +594,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -617,8 +617,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index dfa5ec8..bf423b6 100644
--- a/manpages/pot/lb_bootstrap_cache.1.pot
+++ b/manpages/pot/lb_bootstrap_cache.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index 9dbe640..9e895fb 100644
--- a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index 09c0e58..bb9bd1c 100644
--- a/manpages/pot/lb_bootstrap_copy.1.pot
+++ b/manpages/pot/lb_bootstrap_copy.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index c3b35ab..3e455d4 100644
--- a/manpages/pot/lb_bootstrap_debootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_debootstrap.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
@@ -622,12 +622,12 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
-#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hdd.1:19
+#: en/lb_binary_hooks.1:19 en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
-#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
+#: en/lb_binary_tar.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@@ -644,8 +644,8 @@ msgstr ""
#: en/lb_chroot_sysv-rc.1:19 en/lb_chroot_task-lists.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
-#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
-#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
+#: en/lb_source_disk.1:19 en/lb_source_hdd.1:19 en/lb_source_iso.1:19
+#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
#, no-wrap
msgid "B<n/a>"
msgstr ""
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index 3c12e49..3827479 100644
--- a/manpages/pot/lb_build.1.pot
+++ b/manpages/pot/lb_build.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
+#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
+#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
+#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
+#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
+#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
+#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
+#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
+#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
+#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
+#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
+#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
+#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
+#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
+#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
+#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
+#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
#, no-wrap
msgid "SYNOPSIS"
@@ -212,29 +212,29 @@ msgstr ""
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
-#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.1:9
-#: en/lb_binary_rootfs.1:9 en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9
-#: en/lb_binary_tar.1:9 en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:241 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
+#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
+#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
+#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
+#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
+#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
+#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
+#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
+#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
+#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
+#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
+#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
+#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
+#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
+#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
+#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
+#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -244,13 +244,13 @@ msgstr ""
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
+#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
+#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
+#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_virtual-hdd.1:14 en/lb_binary_win32-loader.1:14
+#: en/lb_binary_yaboot.1:14 en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
@@ -267,8 +267,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:250
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
-#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
-#: en/lb_source_tar.1:14 en/lb_source_usb.1:14 en/lb_source_virtual-hdd.1:14
+#: en/lb_source_disk.1:14 en/lb_source_hdd.1:14 en/lb_source_iso.1:14
+#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -278,13 +278,13 @@ msgstr ""
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
+#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
+#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
+#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_virtual-hdd.1:17 en/lb_binary_win32-loader.1:17
+#: en/lb_binary_yaboot.1:17 en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
@@ -301,8 +301,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:498
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
-#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
-#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
+#: en/lb_source_disk.1:17 en/lb_source_hdd.1:17 en/lb_source_iso.1:17
+#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:227
#, no-wrap
msgid "FILES"
@@ -312,13 +312,13 @@ msgstr ""
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
+#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
+#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
+#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_virtual-hdd.1:21 en/lb_binary_win32-loader.1:21
+#: en/lb_binary_yaboot.1:21 en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
@@ -335,8 +335,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:505
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
-#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
-#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
+#: en/lb_source_disk.1:21 en/lb_source_hdd.1:21 en/lb_source_iso.1:21
+#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:231
#, no-wrap
msgid "SEE ALSO"
@@ -346,13 +346,13 @@ msgstr ""
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
+#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
+#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
+#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_virtual-hdd.1:23 en/lb_binary_win32-loader.1:23
+#: en/lb_binary_yaboot.1:23 en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
@@ -369,8 +369,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:507
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
-#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
-#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
+#: en/lb_source_disk.1:23 en/lb_source_hdd.1:23 en/lb_source_iso.1:23
+#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(7)"
msgstr ""
@@ -379,13 +379,13 @@ msgstr ""
#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
+#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
+#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
+#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_virtual-hdd.1:25 en/lb_binary_win32-loader.1:25
+#: en/lb_binary_yaboot.1:25 en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
@@ -402,8 +402,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:513
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
-#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
-#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
+#: en/lb_source_disk.1:25 en/lb_source_hdd.1:25 en/lb_source_iso.1:25
+#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:237
msgid "This program is a part of live-build."
msgstr ""
@@ -412,13 +412,13 @@ msgstr ""
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
+#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
+#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
+#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_virtual-hdd.1:26 en/lb_binary_win32-loader.1:26
+#: en/lb_binary_yaboot.1:26 en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
@@ -435,8 +435,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:514
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
-#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
-#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
+#: en/lb_source_disk.1:26 en/lb_source_hdd.1:26 en/lb_source_iso.1:26
+#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:238
#, no-wrap
msgid "HOMEPAGE"
@@ -446,13 +446,13 @@ msgstr ""
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
+#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
+#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
+#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_virtual-hdd.1:28 en/lb_binary_win32-loader.1:28
+#: en/lb_binary_yaboot.1:28 en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
@@ -469,8 +469,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:516
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
-#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
-#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
+#: en/lb_source_disk.1:28 en/lb_source_hdd.1:28 en/lb_source_iso.1:28
+#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:240
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -482,13 +482,13 @@ msgstr ""
#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
+#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
+#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
+#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_virtual-hdd.1:29 en/lb_binary_win32-loader.1:29
+#: en/lb_binary_yaboot.1:29 en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
@@ -505,8 +505,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:517
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
-#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
-#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
+#: en/lb_source_disk.1:29 en/lb_source_hdd.1:29 en/lb_source_iso.1:29
+#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:241
#, no-wrap
msgid "BUGS"
@@ -516,13 +516,13 @@ msgstr ""
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
+#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
+#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
+#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_virtual-hdd.1:31 en/lb_binary_win32-loader.1:31
+#: en/lb_binary_yaboot.1:31 en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
@@ -539,8 +539,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:519
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
-#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
-#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
+#: en/lb_source_disk.1:31 en/lb_source_hdd.1:31 en/lb_source_iso.1:31
+#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:243
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -553,13 +553,13 @@ msgstr ""
#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
+#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
+#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
+#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_virtual-hdd.1:32 en/lb_binary_win32-loader.1:32
+#: en/lb_binary_yaboot.1:32 en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
@@ -576,8 +576,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:520
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
-#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
-#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
+#: en/lb_source_disk.1:32 en/lb_source_hdd.1:32 en/lb_source_iso.1:32
+#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:244
#, no-wrap
msgid "AUTHOR"
@@ -587,13 +587,13 @@ msgstr ""
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
+#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
+#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
+#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_virtual-hdd.1:33 en/lb_binary_win32-loader.1:33
+#: en/lb_binary_yaboot.1:33 en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
@@ -610,8 +610,8 @@ msgstr ""
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:521
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
-#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
-#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
+#: en/lb_source_disk.1:33 en/lb_source_hdd.1:33 en/lb_source_iso.1:33
+#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:245
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index 1a302fc..3331e59 100644
--- a/manpages/pot/lb_chroot.1.pot
+++ b/manpages/pot/lb_chroot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-07 17:40+0300\n"
+"POT-Creation-Date: 2011-09-27 22:56+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -20,29 +20,29 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "LIVE-BUILD"
@@ -52,93 +52,93 @@ msgstr ""
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2011-09-07"
+msgid "2011-09-27"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "3.0~a31-1"
+msgid "3.0~a32-1"
msgstr ""
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
-#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.1:1
-#: en/lb_binary_rootfs.1:1 en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1
-#: en/lb_binary_tar.1:1 en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
+#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
+#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
+#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
+#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
+#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
+#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
+#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
+#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
+#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
+#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
+#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
+#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
+#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
+#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
+#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
+#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "Debian Live Project"
@@ -148,29 +148,29 @@ msgstr ""
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
-#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.1:3
-#: en/lb_binary_rootfs.1:3 en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3
-#: en/lb_binary_tar.1:3 en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
+#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
+#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
+#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
+#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
+#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
+#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
+#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
+#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
+#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
+#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
+#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
+#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
+#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
+#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
+#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
+#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
#, no-wrap
msgid "NAME"
@@ -180,29 +180,29 @@ msgstr ""
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
-#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.1:6
-#: en/lb_binary_rootfs.1:6 en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6
-#: en/lb_binary_tar.1:6 en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en