summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2014-11-13 01:45:05 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2014-11-13 01:45:05 +0100
commitd7f86a2d85edd5688cf5492953453c5c42b55a0d (patch)
tree01e8d015139128aeed9f5ab534e774c851525eb9
parent577d9b4ea9a2f3a63be63edb0dd9224f657e249c (diff)
downloadjenkins.debian.net-d7f86a2d85edd5688cf5492953453c5c42b55a0d.tar.xz
g-i hurd: Disable dma on hd0
-rw-r--r--bin/g-i-installation.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 7234800e..d1a27c84 100644
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -314,6 +314,11 @@ bootstrap_system() {
*_kfreebsd) ;;
*_hurd*) # Hurd needs multiboot options jenkins can't escape correctly
echo -n '--kernel '$WORKSPACE'/gnumach --initrd "'$IMAGE_MNT'/boot/initrd.gz \$(ramdisk-create),'$IMAGE_MNT'/boot/kernel/ext2fs.static --multiboot-command-line=\${kernel-command-line} --host-priv-port=\${host-port} --device-master-port=\${device-port} --exec-server-task=\${exec-task} -T typed gunzip:device:rd0 \$(task-create) \$(task-resume),'$IMAGE_MNT'/boot/kernel/ld.so.1 /hurd/exec \$(exec-task=task-create)" ' >> $QEMU_LAUNCHER
+ # The slow qemu emulation brings IRQ
+ # timeouts, so rather avoid them
+ # completely, in qemu PIO is actually
+ # not slower than DMA anyway.
+ APPEND="hd0=nodma $APPEND"
;;
*) ;;
esac