2008-03-17 11:40:47 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
objects=($objects)
|
|
|
|
symlinks=($symlinks)
|
|
|
|
suffices=($suffices)
|
|
|
|
|
|
|
|
mkdir root
|
|
|
|
|
|
|
|
# Needed for splash_helper, which gets run before init.
|
|
|
|
mkdir root/dev
|
|
|
|
mkdir root/sys
|
|
|
|
mkdir root/proc
|
|
|
|
|
|
|
|
|
|
|
|
for ((n = 0; n < ${#objects[*]}; n++)); do
|
|
|
|
object=${objects[$n]}
|
|
|
|
symlink=${symlinks[$n]}
|
|
|
|
suffix=${suffices[$n]}
|
|
|
|
if test "$suffix" = none; then suffix=; fi
|
|
|
|
|
|
|
|
mkdir -p $(dirname root/$symlink)
|
|
|
|
ln -s $object$suffix root/$symlink
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2018-03-05 12:42:31 +01:00
|
|
|
# Get the paths in the closure of `object'.
|
|
|
|
storePaths=$(perl $pathsFromGraph closure-*)
|
|
|
|
|
|
|
|
|
2008-03-17 11:40:47 +01:00
|
|
|
# Paths in cpio archives *must* be relative, otherwise the kernel
|
|
|
|
# won't unpack 'em.
|
2018-03-05 12:42:31 +01:00
|
|
|
(cd root && cp -prd --parents $storePaths .)
|
2008-03-17 11:40:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Put the closure in a gzipped cpio archive.
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out
|
2015-03-25 20:03:03 +01:00
|
|
|
for PREP in $prepend; do
|
|
|
|
cat $PREP >> $out/initrd
|
|
|
|
done
|
2020-09-03 14:19:43 +02:00
|
|
|
(cd root && find * .[^.*] -exec touch -h -d '@1' '{}' +)
|
2020-09-04 18:18:32 +02:00
|
|
|
(cd root && find * .[^.*] -print0 | sort -z | cpio -o -H newc -R +0:+0 --reproducible --null | eval -- $compress >> "$out/initrd")
|
2009-11-08 01:32:12 +01:00
|
|
|
|
|
|
|
if [ -n "$makeUInitrd" ]; then
|
2020-09-04 18:18:32 +02:00
|
|
|
mkimage -A $uInitrdArch -O linux -T ramdisk -C "$uInitrdCompression" -d $out/initrd"$extension" $out/initrd.img
|
|
|
|
# Compatibility symlink
|
|
|
|
ln -s "initrd.img" "$out/initrd"
|
|
|
|
else
|
|
|
|
ln -s "initrd" "$out/initrd$extension"
|
2009-11-08 01:32:12 +01:00
|
|
|
fi
|