Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!
| author | Michael Prokop <mika@grml.org> |
| Thu Mar 29 11:12:33 2007 +0200 (20 months ago) | |
| changeset 102 | 5d45f07f1d9d |
| manifest | 5d45f07f1d9d |
| parent 101 | 074f2873cd3d |
| child 103 | cd1eeb50fcdd |
--- 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+ fiecho "30"echo "XXX";echo "Copying /media";