summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-10-27 13:22:49 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-10-27 13:22:49 +0200
commit26a9e20c55a6e0c1161da771af8654042aaa8029 (patch)
treefc72a2a38a0ac1de9164043129cf38bb61c138fc /Makefile
parent8b36bbabccdef56f616e1b1f48121105e10e5a97 (diff)
downloadminilinux-master.tar.gz
minilinux-master.tar.bz2
renamed 'run' to 'run-qemu' in makefileHEADmaster
updated syslinux to 4.07 and busybox 1.27.2 clarified some prerequisites
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 11 insertions, 5 deletions
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