diff options
author | Daniel Baumann <daniel@debian.org> | 2007-10-10 11:39:55 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:27 +0100 |
commit | 57444bb38b61d318c03f64947c8af49293da9342 (patch) | |
tree | d71abee033e472d3013bb5f35169fb403ff5efd9 | |
parent | 095cc5f19a4366506a201f5972ed41a29e2f3abb (diff) | |
download | vyos-live-build-57444bb38b61d318c03f64947c8af49293da9342.tar.gz vyos-live-build-57444bb38b61d318c03f64947c8af49293da9342.zip |
Adding check to fail if a cross build is started (Closes: #444669, #444670).
-rwxr-xr-x | functions/architecture.sh | 22 | ||||
-rwxr-xr-x | helpers/lh_binary_grub | 1 | ||||
-rwxr-xr-x | helpers/lh_binary_syslinux | 1 | ||||
-rwxr-xr-x | helpers/lh_binary_yaboot | 1 | ||||
-rwxr-xr-x | helpers/lh_bootstrap_cache | 3 | ||||
-rwxr-xr-x | helpers/lh_bootstrap_cdebootstrap | 3 | ||||
-rwxr-xr-x | helpers/lh_bootstrap_copy | 3 | ||||
-rwxr-xr-x | helpers/lh_bootstrap_debootstrap | 3 |
8 files changed, 37 insertions, 0 deletions
diff --git a/functions/architecture.sh b/functions/architecture.sh index d9c84f869..6cc0cafa0 100755 --- a/functions/architecture.sh +++ b/functions/architecture.sh @@ -30,6 +30,28 @@ Check_architecture () fi } +Check_crossarchitecture () +{ + if [ -x /usr/bin/dpkg ] + then + HOST="$(dpkg --print-architecture)" + else + HOST="$(uname -m)" + fi + + case "${HOST}" in + amd64|i386) + CROSS="amd64 i386" + ;; + + powerpc|ppc64) + CROSS="powerpc ppc64" + ;; + esac + + Check_architecture "${CROSS}" +} + Check_multiarchitecture () { if [ "$(echo ${LH_ARCHITECTURE} | wc -w)" -gt "1" ] diff --git a/helpers/lh_binary_grub b/helpers/lh_binary_grub index 4bb5f7dd6..9ba328660 100755 --- a/helpers/lh_binary_grub +++ b/helpers/lh_binary_grub @@ -57,6 +57,7 @@ Create_lockfile .lock # Check architecture Check_architecture amd64 i386 +Check_crossarchitecture # Checking depends Check_package chroot/usr/sbin/grub grub diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux index 8c6887fb2..3af3790f3 100755 --- a/helpers/lh_binary_syslinux +++ b/helpers/lh_binary_syslinux @@ -57,6 +57,7 @@ Create_lockfile .lock # Check architecture Check_architecture amd64 i386 +Check_crossarchitecture # Checking depends Check_package chroot/usr/bin/syslinux syslinux diff --git a/helpers/lh_binary_yaboot b/helpers/lh_binary_yaboot index e3f8df3ee..8cffb3f7c 100755 --- a/helpers/lh_binary_yaboot +++ b/helpers/lh_binary_yaboot @@ -57,6 +57,7 @@ Create_lockfile .lock # Check architecture Check_architecture powerpc ppc64 +Check_crossarchitecture # Checking depends Check_package chroot/usr/lib/yaboot/yaboot yaboot diff --git a/helpers/lh_bootstrap_cache b/helpers/lh_bootstrap_cache index 66f57c203..4efeba398 100755 --- a/helpers/lh_bootstrap_cache +++ b/helpers/lh_bootstrap_cache @@ -33,6 +33,9 @@ Read_conffile config/source Read_conffile "${LH_CONFIG}" Set_defaults +# Check architecture +Check_crossarchitecture + Echo_message "Begin caching bootstrap stage..." for STAGE in ${LH_CACHE_STAGES} diff --git a/helpers/lh_bootstrap_cdebootstrap b/helpers/lh_bootstrap_cdebootstrap index e2b627be0..616e1959c 100755 --- a/helpers/lh_bootstrap_cdebootstrap +++ b/helpers/lh_bootstrap_cdebootstrap @@ -38,6 +38,9 @@ then exit 0 fi +# Check architecture +Check_crossarchitecture + Echo_message "Begin bootstrapping system..." Check_package /usr/bin/cdebootstrap cdebootstrap diff --git a/helpers/lh_bootstrap_copy b/helpers/lh_bootstrap_copy index 1f48c7f76..518069f3d 100755 --- a/helpers/lh_bootstrap_copy +++ b/helpers/lh_bootstrap_copy @@ -38,6 +38,9 @@ then exit 0 fi +# Check architecture +Check_crossarchitecture + Echo_message "Begin bootstrapping system..." # Ensure that a system is built as root diff --git a/helpers/lh_bootstrap_debootstrap b/helpers/lh_bootstrap_debootstrap index 3be396800..c25b37928 100755 --- a/helpers/lh_bootstrap_debootstrap +++ b/helpers/lh_bootstrap_debootstrap @@ -38,6 +38,9 @@ then exit 0 fi +# Check architecture +Check_crossarchitecture + Echo_message "Begin bootstrapping system..." Check_package /usr/sbin/debootstrap debootstrap |