mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
78b2ed263e
svn path=/nixu/trunk/; revision=7063
22 lines
544 B
Bash
22 lines
544 B
Bash
source $stdenv/setup
|
|
|
|
set -o pipefail
|
|
|
|
# Get the paths in the closure of `init'.
|
|
if ! test -e ./init-closure; then
|
|
echo 'Your Nix installation is too old! Upgrade to nix-0.11pre7038 or newer.'
|
|
exit 1
|
|
fi
|
|
storePaths=$($SHELL $pathsFromGraph ./init-closure)
|
|
|
|
# Paths in cpio archives *must* be relative, otherwise the kernel
|
|
# won't unpack 'em.
|
|
mkdir root
|
|
cd root
|
|
cp -prd --parents $storePaths .
|
|
|
|
# Put the closure in a gzipped cpio archive.
|
|
ensureDir $out
|
|
ln -s $init init
|
|
find * -print0 | cpio -ov -H newc --null | gzip -9 > $out/initrd
|