Warning!

Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!

Do not forget to copy 64bit directories as well.
authorMichael Prokop <mika@grml.org>
Thu Mar 29 11:12:33 2007 +0200 (20 months ago)
changeset 1025d45f07f1d9d
manifest5d45f07f1d9d
parent 101074f2873cd3d
child 103cd1eeb50fcdd
Do not forget to copy 64bit directories as well.
debian/changelog
grml2hd
--- a/debian/changelog Wed Mar 28 20:47:23 2007 +0200
+++ b/debian/changelog Thu Mar 29 11:12:33 2007 +0200
@@ -1,3 +1,10 @@ grml2hd (0.9.11) unstable; urgency=low
+grml2hd (0.9.12) unstable; urgency=low
+
+ * Do not forget to copy 64bit directories as well.
+ Thanks for debugging and notifying, gebi!
+
+ -- Michael Prokop <mika@grml.org> Thu, 29 Mar 2007 11:11:50 +0200
+
grml2hd (0.9.11) unstable; urgency=low
* Do not use /usr/lib/grub/i386-pc/stage1 as static symlink but
--- a/grml2hd Wed Mar 28 20:47:23 2007 +0200
+++ b/grml2hd Thu Mar 29 11:12:33 2007 +0200
@@ -4,7 +4,7 @@
# Authors: grml-team (grml.org), (c) Andreas Gredler <jimmy@grml.org>, Michael Prokop <mika@grml.org>
# Bug-Reports: see http://grml.org/bugs/
# License: This file is licensed under the GPL v2.
-# Latest change: Mit Mär 28 20:40:41 CEST 2007 [mika]
+# Latest change: Don Mär 29 11:12:20 CEST 2007 [mika]
################################################################################
LANG='C'
@@ -49,7 +49,7 @@ image=/boot/memtest86+.bin
"
# variables
-VERSION='0.9.11'
+VERSION='0.9.12'
PN=$(basename "$0")
PID="$(echo $$)"
UNAME=$(uname -r)
@@ -337,6 +337,15 @@ copy_files() {
echo "Copying /lib";
echo "XXX";
cp -a lib $TARGET 1>>$LOGFILE 2>&1
+ if [ -r lib64 ] ; then
+ echo "25"
+ echo "XXX";
+ echo "Copying 64bit stuff";
+ echo "XXX";
+ [ -r lib32 ] && cp -a lib32 $TARGET 1>>$LOGFILE 2>&1
+ [ -r lib64 ] && cp -a lib64 $TARGET 1>>$LOGFILE 2>&1
+ [ -r emul ] && cp -a emul $TARGET 1>>$LOGFILE 2>&1
+ fi
echo "30"
echo "XXX";
echo "Copying /media";