From 5f4d8bf513c8ce0f1c6d6b6c102859144200923e Mon Sep 17 00:00:00 2001 From: Daniel Bainton Date: Wed, 9 Apr 2014 10:45:35 +0300 Subject: [PATCH] Add mk bootable back to the mkfile --- mkfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mkfile b/mkfile index f121bd4..3029984 100644 --- a/mkfile +++ b/mkfile @@ -3,6 +3,8 @@ configmk = `{pwd}/config.mk mkbuild = `{pwd}/mkbuild +<$configmk + all:QV: cd ports env -i PATH="$PATH" configmk="$configmk" mkbuild="$mkbuild" mk TARG="$TARG" @@ -11,6 +13,9 @@ init:QV: git submodule init git submodule update --remote +bootable:V: + stuff/create-bootable "$ROOT" morpheus-$arch-$version.img + install:QV: cd ports env -i PATH="$PATH" configmk="$configmk" mkbuild="$mkbuild" mk install ROOT="${ROOT}" TARG="$TARG"