1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 21:41:21 +00:00
morpheus/stage0

27 lines
406 B
Plaintext
Raw Normal View History

2013-09-06 08:31:51 +00:00
#!/bin/sh
2013-09-06 09:08:58 +00:00
./clean
2013-09-17 14:26:52 +00:00
. ./prepare-env
. ./prepare-root
2013-09-06 08:31:51 +00:00
2013-09-17 14:26:52 +00:00
mkdir -p src cross
2013-09-06 08:31:51 +00:00
2013-09-17 14:26:52 +00:00
# Deps list
./build cross-scripts/musl
./build cross-scripts/libevent
./build cross-scripts/ncurses
./build cross-scripts/zlib
2013-09-17 10:37:13 +00:00
2013-09-06 08:31:51 +00:00
# Build stage0 packages
pkglist=$(ls pkgs)
for pkg in $pkglist; do
./build pkgs/$pkg
done
pushd $root
2013-09-17 11:03:02 +00:00
echo Creating ramdisk
2013-09-08 17:39:49 +00:00
find . | cpio --quiet -H newc -o | gzip -9 -n > ../morpheus.img
2013-09-06 08:31:51 +00:00
popd
echo OK!