morpheus

suckless linux distro
git clone git://git.2f30.org/morpheus
Log | Files | Refs | Submodules | README | LICENSE

commit 32184bc4ca655f8d5cd8757ecdc74c42d5ed3efa
parent 3b62ffac66a48e79776664e0e21f35a288b10eac
Author: sin <sin@2f30.org>
Date:   Wed, 18 Sep 2013 21:22:59 +0100

Don't pack ramdisk by default

Diffstat:
MREADME | 5+----
Rrepack -> mkinitrd | 0
Rqemu-run -> qemu-run-initrd | 0
Mstage0 | 5-----
4 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/README b/README @@ -6,15 +6,12 @@ as well as other tools. To build the world use `fakeroot ./stage0'. You need an x86_64 host to build morpheus. -To build a particular package use `fakeroot ./pkgbuild pkgpath'. You -might then need to repack the ramdisk with `fakeroot ./repack'. +To build a particular package use `fakeroot ./pkgbuild pkgpath'. After you've created the ramdisk you can build a bootable image with `sudo ./create-bootable'. You can dd this image to a USB stick if you need to. -Execute `qemu-run' (you will need vde_switch and slirpvde). - Login with `root' and an empty password. Enjoy! diff --git a/repack b/mkinitrd diff --git a/qemu-run b/qemu-run-initrd diff --git a/stage0 b/stage0 @@ -18,9 +18,4 @@ for pkg in $pkglist; do ./build pkgs/$pkg done -pushd $root -echo Creating ramdisk -find . | cpio --quiet -H newc -o | gzip -9 -n > ../morpheus.img -popd - echo OK!