Initial commit

This commit is contained in:
g-vidal
2025-10-26 18:06:53 +01:00
commit 05d538e677
85 changed files with 6639 additions and 0 deletions

19
files/initramfs/expand-tools Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
set -e
# Use initramfs utility functions
. /usr/share/initramfs-tools/hook-functions
# Add binaries required for resizing the filesystem
copy_exec /bin/grep /bin
copy_exec /usr/bin/awk /bin
copy_exec /usr/bin/cut /bin
copy_exec /usr/bin/tail /bin
copy_exec /sbin/fdisk /sbin
copy_exec /sbin/parted /sbin
copy_exec /sbin/e2fsck /sbin
copy_exec /sbin/resize2fs /sbin
copy_exec /sbin/partprobe /sbin
exit 0