diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-11-13 09:21:56 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-11-13 11:57:51 +0100 |
commit | d671df5919be8c7878d5a56573af0792cd39781f (patch) | |
tree | 01e8d015139128aeed9f5ab534e774c851525eb9 | |
parent | 77a0ccd429f5f9729e8066541977557ff4bb7e98 (diff) | |
download | jenkins.debian.net-d671df5919be8c7878d5a56573af0792cd39781f.tar.xz |
g-i hurd: Disable dma on hd0
-rw-r--r-- | bin/g-i-installation.sh | 5 |
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 |