Package: qa.debian.org Tags: patch I investigated the new installation failure for Debian Edu/Squeeze reported in <URL: http://jenkins.debian.net/job/cd-test_debian_edu_standalone_squeeze_test/ >, and found a way to get the keymap question preseeding to work.
Instead of specifying keymap=us on the command line like one do in Wheezy, one can use console-keymaps-at/keymap=us. I am sorry I was not aware of this change between Squeeze and Wheezy, and just copied the Wheezy setup for Squeeze. I believe the attached patch can be used to get the installation going. -- Happy hacking Petter Reinholdtsen
>From b4532fe595c507dd3849a11b8b4cc8212675db84 Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen <[email protected]> Date: Wed, 5 Dec 2012 07:56:34 +0100 Subject: [PATCH 4/4] Fix keymap preseeding for debian-edu-squeeze-test-standalone. --- bin/cd_tester.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/cd_tester.sh b/bin/cd_tester.sh index 6291d63..2dbd48f 100755 --- a/bin/cd_tester.sh +++ b/bin/cd_tester.sh @@ -81,7 +81,7 @@ bootstrap() { ;; debian-edu-squeeze-test-standalone) echo "fire up qemu now..." - sudo qemu-system-x86_64 -cdrom $IMAGE -hda $NAME.qcow -boot d -m 1024 -display vnc=localhost:$DISPLAY --kernel $IMAGE_MNT/install.amd/vmlinuz --append "auto=true priority=critical locale=en_US keymap=us url=http://10.0.2.2/userContent/${NAME}-preseed.cfg video=vesa:ywrap,mtrr vga=788 initrd=/install.amd/gtk/initrd.gz -- quiet" --initrd $IMAGE_MNT/install.amd/gtk/initrd.gz & + sudo qemu-system-x86_64 -cdrom $IMAGE -hda $NAME.qcow -boot d -m 1024 -display vnc=localhost:$DISPLAY --kernel $IMAGE_MNT/install.amd/vmlinuz --append "auto=true priority=critical locale=en_US console-keymaps-at/keymap=us url=http://10.0.2.2/userContent/${NAME}-preseed.cfg video=vesa:ywrap,mtrr vga=788 initrd=/install.amd/gtk/initrd.gz -- quiet" --initrd $IMAGE_MNT/install.amd/gtk/initrd.gz & ;; lxde-wheezy) echo "fire up qemu now..." -- 1.7.2.5

