summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_linuximage
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/lh_binary_linuximage')
-rwxr-xr-xhelpers/lh_binary_linuximage15
1 files changed, 12 insertions, 3 deletions
diff --git a/helpers/lh_binary_linuximage b/helpers/lh_binary_linuximage
index 600aeaa..629ef77 100755
--- a/helpers/lh_binary_linuximage
+++ b/helpers/lh_binary_linuximage
@@ -25,10 +25,11 @@ Arguments "${@}"
Echo_debug "Init ${PROGRAM}"
# Reading configuration files
+Read_conffile config/common
Read_conffile config/bootstrap
Read_conffile config/chroot
-Read_conffile config/common
-Read_conffile config/image
+Read_conffile config/binary
+Read_conffile config/source
Set_defaults
Breakpoint "binary_linuximage: Init"
@@ -58,7 +59,7 @@ case "${LIVE_BINARY_IMAGE}" in
DESTDIR="tftpboot"
;;
- usb|hdd)
+ usb-hdd|hdd)
DESTDIR="binary"
;;
esac
@@ -70,9 +71,17 @@ then
if [ -n "${MULTIARCH}" ]
then
case "${LIVE_ARCHITECTURE}" in
+ amd64)
+ DESTDIR="${DESTDIR}.amd"
+ ;;
+
i386)
DESTDIR="${DESTDIR}.386"
;;
+
+ powerpc)
+ DESTDIR="${DESTDIR}.ppc"
+ ;;
esac
fi
fi