From 26a9e20c55a6e0c1161da771af8654042aaa8029 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 27 Oct 2017 13:22:49 +0200 Subject: renamed 'run' to 'run-qemu' in makefile updated syslinux to 4.07 and busybox 1.27.2 clarified some prerequisites --- Makefile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 39f4aa5..7021082 100644 --- a/Makefile +++ b/Makefile @@ -8,17 +8,19 @@ help: @echo "vdi - create an image for VirtualBox" @echo "vmdk - create an image for VMware" @echo "" - @echo "clean - cleanup build artifacts" + @echo "clean - cleanup build artifacts" + @echo + @echo "run-qemu - run in QEMU" @echo "" @echo "run minimal Linux for example with 'qema -hda minilinux.img'" -.PHONY: help run all step1 step2 step3 step4 step5 mount-disk umount-disk mount-root umount-root +.PHONY: help run-qemu all step1 step2 step3 step4 step5 mount-disk umount-disk mount-root umount-root # software versions -SYSLINUX_VERSION=4.04 +SYSLINUX_VERSION=4.07 KERNEL_VERSION=3.1.4 UCLIBC_VERSION=0.9.32 -BUSYBOX_VERSION=1.19.3 +BUSYBOX_VERSION=1.27.2 ACPID_VERSION=1.0.10 GPM_VERSION=1.20.7 PERL_VERSION=5.12.1 @@ -280,7 +282,11 @@ source: wget -O tarballs/lua-$(LUA_VERSION).tar.gz \ http://www.lua.org/ftp/lua-$(LUA_VERSION).tar.gz -run: +run-qemu: /usr/libexec/qemu-kvm -hda minilinux.img & vncviewer localhost & +run-qemu: minilinux.img + qemu-system-x86_64 -curses -enable-kvm -hda minilinux.img + + \ No newline at end of file -- cgit v1.2.3-54-g00ecf