2006-11-02 18:56:50 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
|
2007-01-23 14:44:41 +01:00
|
|
|
sources_=($sources)
|
|
|
|
targets_=($targets)
|
|
|
|
|
|
|
|
objects=($objects)
|
|
|
|
symlinks=($symlinks)
|
|
|
|
|
2009-06-09 14:01:31 +02:00
|
|
|
|
|
|
|
# Remove the initial slash from a path, since genisofs likes it that way.
|
|
|
|
stripSlash() {
|
|
|
|
res="$1"
|
|
|
|
if test "${res:0:1}" = /; then res=${res:1}; fi
|
|
|
|
}
|
|
|
|
|
|
|
|
stripSlash "$bootImage"; bootImage="$res"
|
|
|
|
|
|
|
|
|
2006-11-02 18:56:50 +01:00
|
|
|
if test -n "$bootable"; then
|
2007-02-07 16:23:19 +01:00
|
|
|
|
|
|
|
# The -boot-info-table option modifies the $bootImage file, so
|
|
|
|
# find it in `contents' and make a copy of it (since the original
|
|
|
|
# is read-only in the Nix store...).
|
|
|
|
for ((i = 0; i < ${#targets_[@]}; i++)); do
|
2009-06-09 14:01:31 +02:00
|
|
|
stripSlash "${targets_[$i]}"
|
|
|
|
if test "$res" = "$bootImage"; then
|
2007-02-07 16:23:19 +01:00
|
|
|
echo "copying the boot image ${sources_[$i]}"
|
|
|
|
cp "${sources_[$i]}" boot.img
|
|
|
|
chmod u+w boot.img
|
|
|
|
sources_[$i]=boot.img
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2008-01-24 17:56:09 +01:00
|
|
|
bootFlags="-b $bootImage -c .boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
|
2006-11-02 18:56:50 +01:00
|
|
|
fi
|
|
|
|
|
2012-03-16 06:37:24 +01:00
|
|
|
if test -n "$efiBootable"; then
|
|
|
|
bootFlags="$bootFlags -eltorito-alt-boot -e $efiBootImage -no-emul-boot"
|
|
|
|
fi
|
2009-06-09 14:01:31 +02:00
|
|
|
|
2008-01-15 16:39:34 +01:00
|
|
|
touch pathlist
|
2007-01-23 14:44:41 +01:00
|
|
|
|
2009-06-09 14:01:31 +02:00
|
|
|
|
2007-01-23 15:34:44 +01:00
|
|
|
# Add the individual files.
|
2006-11-04 00:41:57 +01:00
|
|
|
for ((i = 0; i < ${#targets_[@]}; i++)); do
|
2009-06-09 14:01:31 +02:00
|
|
|
stripSlash "${targets_[$i]}"
|
2009-06-10 23:46:42 +02:00
|
|
|
echo "$res=${sources_[$i]}" >> pathlist
|
2006-11-04 00:41:57 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
|
2007-01-23 15:34:44 +01:00
|
|
|
# Add the closures of the top-level store objects.
|
|
|
|
storePaths=$(perl $pathsFromGraph closure-*)
|
|
|
|
for i in $storePaths; do
|
2008-01-15 16:39:34 +01:00
|
|
|
echo "${i:1}=$i" >> pathlist
|
2007-01-23 15:34:44 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
|
2009-06-10 15:40:35 +02:00
|
|
|
# Also include a manifest of the closures in a format suitable for
|
|
|
|
# nix-store --load-db.
|
2010-06-22 00:00:48 +02:00
|
|
|
if [ -n "$object" ]; then
|
2010-05-28 08:27:31 +02:00
|
|
|
printRegistration=1 perl $pathsFromGraph closure-* > nix-path-registration
|
|
|
|
echo "nix-path-registration=nix-path-registration" >> pathlist
|
|
|
|
fi
|
2007-01-23 16:08:00 +01:00
|
|
|
|
|
|
|
|
2007-01-23 15:34:44 +01:00
|
|
|
# Add symlinks to the top-level store objects.
|
2007-01-23 14:44:41 +01:00
|
|
|
for ((n = 0; n < ${#objects[*]}; n++)); do
|
|
|
|
object=${objects[$n]}
|
|
|
|
symlink=${symlinks[$n]}
|
|
|
|
if test "$symlink" != "none"; then
|
|
|
|
mkdir -p $(dirname ./$symlink)
|
|
|
|
ln -s $object ./$symlink
|
2008-01-15 16:39:34 +01:00
|
|
|
echo "$symlink=./$symlink" >> pathlist
|
2007-01-23 14:44:41 +01:00
|
|
|
fi
|
2006-11-04 00:41:57 +01:00
|
|
|
done
|
|
|
|
|
2009-06-09 14:01:31 +02:00
|
|
|
# !!! what does this do?
|
2008-03-10 21:19:33 +01:00
|
|
|
cat pathlist | sed -e 's/=\(.*\)=\(.*\)=/\\=\1=\2\\=/' | tee pathlist.safer
|
2008-01-15 16:39:34 +01:00
|
|
|
|
2008-06-05 15:42:18 +02:00
|
|
|
|
2006-11-04 13:08:10 +01:00
|
|
|
ensureDir $out/iso
|
2008-08-08 19:07:04 +02:00
|
|
|
genCommand="genisoimage -iso-level 4 -r -J $bootFlags -hide-rr-moved -graft-points -path-list pathlist.safer ${volumeID:+-V $volumeID}"
|
2008-06-05 15:42:18 +02:00
|
|
|
if test -z "$compressImage"; then
|
|
|
|
$genCommand -o $out/iso/$isoName
|
|
|
|
else
|
|
|
|
$genCommand | bzip2 > $out/iso/$isoName.bz2
|
|
|
|
fi
|
2008-08-08 19:07:04 +02:00
|
|
|
|
2006-11-04 13:00:05 +01:00
|
|
|
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo $system > $out/nix-support/system
|