##// END OF EJS Templates
fix: ENABLE_CRYPTFS -> UBOOT, SPLITFS, EXPANDROOT - cleanup
fix: ENABLE_CRYPTFS -> UBOOT, SPLITFS, EXPANDROOT - cleanup

Fichier de la dernière révision:

r82:d0f91512d9ca
r82:d0f91512d9ca
Show More
expand-tools
19 lines | 418 B | text/plain | TextLexer
#!/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