Don't pack ramdisk by default

This commit is contained in:
sin 2013-09-18 21:22:59 +01:00
parent 3b62ffac66
commit 32184bc4ca
4 changed files with 1 additions and 9 deletions

5
README
View File

@ -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!

View File

5
stage0
View File

@ -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!