diff options
author | Andrew Cady <d@jerkface.net> | 2016-04-20 14:50:25 -0400 |
---|---|---|
committer | Andrew Cady <d@jerkface.net> | 2016-04-20 14:53:04 -0400 |
commit | 1961664ec151439d896f90ffdb3b7bd6cbe18fb9 (patch) | |
tree | 912fbd998591913df7d34e06a491181609c0cc38 /qemu.sh | |
parent | c423735419e683fb2b084cc4c3a1b9948aa98ad2 (diff) |
qemu will abort if initrd.sh failed
Diffstat (limited to 'qemu.sh')
-rwxr-xr-x | qemu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ | |||
4 | # img=debian-live-8.4.0-amd64-standard.iso | 4 | # img=debian-live-8.4.0-amd64-standard.iso |
5 | img=debian-live-8.4.0-amd64-standard.btrfs.iso | 5 | img=debian-live-8.4.0-amd64-standard.btrfs.iso |
6 | 6 | ||
7 | ./initrd.sh | 7 | ./initrd.sh || { echo "./initrd.sh failed" >&2; exit 1; }; |
8 | 8 | ||
9 | # NET='user,tftp=isolinux,bootfile=/pxelinux.0' | 9 | # NET='user,tftp=isolinux,bootfile=/pxelinux.0' |
10 | NET='tap,vlan=0,ifname=tap0,script=no,downscript=no' | 10 | NET='tap,vlan=0,ifname=tap0,script=no,downscript=no' |