From 72bd42fd258db9be494a40e028520af4e6ff7fc8 Mon Sep 17 00:00:00 2001 From: Ivan Davidov Date: Sat, 18 Apr 2015 14:17:10 +0300 Subject: [PATCH] Few improvements based on contributed code and user proposals: * Added basic DHCP network support. DNS not working due to glibc static linking issues. * Added 'genisoimage' fix for Debian systems. * Added compilation optimization which significantly reduces the overall compilation time. --- src/qemu32.sh | 4 ++++ src/qemu64.sh | 4 ++++ 2 files changed, 8 insertions(+) create mode 100755 src/qemu32.sh create mode 100755 src/qemu64.sh diff --git a/src/qemu32.sh b/src/qemu32.sh new file mode 100755 index 000000000..2e4d546c4 --- /dev/null +++ b/src/qemu32.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +qemu-system-i386 -cdrom minimal_linux_live.iso + diff --git a/src/qemu64.sh b/src/qemu64.sh new file mode 100755 index 000000000..8e5174a01 --- /dev/null +++ b/src/qemu64.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +qemu-system-x86_64 -cdrom minimal_linux_live.iso +