mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
make-ext4-fs: Allows populating with custom files
This will allow adding /boot files to the rootfs.
This commit is contained in:
parent
6e9e78b618
commit
a0aff40f65
@ -1,9 +1,14 @@
|
|||||||
# Builds an ext4 image containing a populated /nix/store with the closure
|
# Builds an ext4 image containing a populated /nix/store with the closure
|
||||||
# of store paths passed in the storePaths parameter. The generated image
|
# of store paths passed in the storePaths parameter, in addition to the
|
||||||
# is sized to only fit its contents, with the expectation that a script
|
# contents of a directory that can be populated with commands. The
|
||||||
# resizes the filesystem at boot time.
|
# generated image is sized to only fit its contents, with the expectation
|
||||||
|
# that a script resizes the filesystem at boot time.
|
||||||
{ pkgs
|
{ pkgs
|
||||||
|
# List of derivations to be included
|
||||||
, storePaths
|
, storePaths
|
||||||
|
# Shell commands to populate the ./files directory.
|
||||||
|
# All files in that directory are copied to the root of the FS.
|
||||||
|
, populateImageCommands ? ""
|
||||||
, volumeLabel
|
, volumeLabel
|
||||||
, uuid ? "44444444-4444-4444-8888-888888888888"
|
, uuid ? "44444444-4444-4444-8888-888888888888"
|
||||||
, e2fsprogs
|
, e2fsprogs
|
||||||
@ -23,13 +28,17 @@ pkgs.stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildCommand =
|
buildCommand =
|
||||||
''
|
''
|
||||||
|
(
|
||||||
|
mkdir -p ./files
|
||||||
|
${populateImageCommands}
|
||||||
|
)
|
||||||
# Add the closures of the top-level store objects.
|
# Add the closures of the top-level store objects.
|
||||||
storePaths=$(cat ${sdClosureInfo}/store-paths)
|
storePaths=$(cat ${sdClosureInfo}/store-paths)
|
||||||
|
|
||||||
# Make a crude approximation of the size of the target image.
|
# Make a crude approximation of the size of the target image.
|
||||||
# If the script starts failing, increase the fudge factors here.
|
# If the script starts failing, increase the fudge factors here.
|
||||||
numInodes=$(find $storePaths | wc -l)
|
numInodes=$(find $storePaths ./files | wc -l)
|
||||||
numDataBlocks=$(du -c -B 4096 --apparent-size $storePaths | awk '$2 == "total" { print int($1 * 1.03) }')
|
numDataBlocks=$(du -s -c -B 4096 --apparent-size $storePaths ./files | tail -1 | awk '{ print int($1 * 1.03) }')
|
||||||
bytes=$((2 * 4096 * $numInodes + 4096 * $numDataBlocks))
|
bytes=$((2 * 4096 * $numInodes + 4096 * $numDataBlocks))
|
||||||
echo "Creating an EXT4 image of $bytes bytes (numInodes=$numInodes, numDataBlocks=$numDataBlocks)"
|
echo "Creating an EXT4 image of $bytes bytes (numInodes=$numInodes, numDataBlocks=$numDataBlocks)"
|
||||||
|
|
||||||
@ -47,6 +56,12 @@ pkgs.stdenv.mkDerivation {
|
|||||||
echo "copying store paths to image..."
|
echo "copying store paths to image..."
|
||||||
cptofs -t ext4 -i $out $storePaths /nix/store/
|
cptofs -t ext4 -i $out $storePaths /nix/store/
|
||||||
|
|
||||||
|
(
|
||||||
|
echo "copying files to image..."
|
||||||
|
cd ./files
|
||||||
|
cptofs -t ext4 -i $out ./* /
|
||||||
|
)
|
||||||
|
|
||||||
# I have ended up with corrupted images sometimes, I suspect that happens when the build machine's disk gets full during the build.
|
# I have ended up with corrupted images sometimes, I suspect that happens when the build machine's disk gets full during the build.
|
||||||
if ! fsck.ext4 -n -f $out; then
|
if ! fsck.ext4 -n -f $out; then
|
||||||
echo "--- Fsck failed for EXT4 image of $bytes bytes (numInodes=$numInodes, numDataBlocks=$numDataBlocks) ---"
|
echo "--- Fsck failed for EXT4 image of $bytes bytes (numInodes=$numInodes, numDataBlocks=$numDataBlocks) ---"
|
||||||
|
Loading…
Reference in New Issue
Block a user