This commit is contained in:
Andrew Kidd 2024-12-26 14:59:24 +00:00
parent 65bf5b2d4f
commit 5242e479ef

View file

@ -129,13 +129,13 @@ in
echo "Exporting rootfs image" echo "Exporting rootfs image"
mkdir -p $rootfs mkdir -p $rootfs
mv ${rootfsImage} $rootfs cp -r ${rootfsImage} $rootfs
# Populate the files intended for /boot/firmware # Populate the files intended for /boot/firmware
mkdir -p firmware mkdir -p firmware
${config.netImage.populateFirmwareCommands} ${config.netImage.populateFirmwareCommands}
mkdir -p $bootfs mkdir -p $bootfs
mv firmware $bootfs cp -r firmware $bootfs
${config.netImage.postBuildCommands} ${config.netImage.postBuildCommands}
''; '';