diff options
Diffstat (limited to 'sys-boot/myinitramfs/files')
-rw-r--r-- | sys-boot/myinitramfs/files/baselist | 2 | ||||
-rwxr-xr-x | sys-boot/myinitramfs/files/gen.sh | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/sys-boot/myinitramfs/files/baselist b/sys-boot/myinitramfs/files/baselist index e176739..e1ad584 100644 --- a/sys-boot/myinitramfs/files/baselist +++ b/sys-boot/myinitramfs/files/baselist @@ -15,8 +15,6 @@ dir /usr/sbin 755 0 0 dir /usr/lib64 755 0 0 dir /mnt 755 0 0 dir /mnt/root 755 0 0 -dir /run/lock 755 0 0 -dir /run/lock/cryptsetup 755 0 0 # Ld file /lib64/ld-linux-x86-64.so.2 /lib64/ld-linux-x86-64.so.2 755 0 0 diff --git a/sys-boot/myinitramfs/files/gen.sh b/sys-boot/myinitramfs/files/gen.sh index 697968b..e15edcd 100755 --- a/sys-boot/myinitramfs/files/gen.sh +++ b/sys-boot/myinitramfs/files/gen.sh @@ -22,13 +22,6 @@ cp baselist "$LIST" # Init script echo "file /init ./init.enc 755 0 0" >> "$LIST" echo >> "$LIST" -# GCC library -echo "dir /usr/lib 755 0 0" >> "$LIST" -echo "dir /usr/lib/gcc 755 0 0" >> "$LIST" -find /usr/lib/gcc -type f -name libgcc\*\.so\* | while read -r lib; do - echo "file $lib $lib 755 0 0" >> "$LIST" -done -echo >> "$LIST" # Executables required when USE_DMI if [ -n "$USE_DMI" ]; then echo "file /sbin/initramfs_password ./initramfs_password 755 0 0" >> "$LIST" |