From ff368b7f4dd180b8f9fa04fd1cb32726de98a0fd Mon Sep 17 00:00:00 2001 From: Freemor Date: Fri, 23 Nov 2018 17:15:39 -0400 Subject: Updated [plymouth] to address #2067 - Added parabola-logo.png - Updated referrences to arch-logo.png to parabola-logo.png - v0.9.3 -> 0.9.4 - removed a patch that seemed not to be necessary any more. --- pcr-testing/plymouth/plymouth.encrypt_install | 52 +++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 pcr-testing/plymouth/plymouth.encrypt_install (limited to 'pcr-testing/plymouth/plymouth.encrypt_install') diff --git a/pcr-testing/plymouth/plymouth.encrypt_install b/pcr-testing/plymouth/plymouth.encrypt_install new file mode 100644 index 000000000..b2d7cbc1a --- /dev/null +++ b/pcr-testing/plymouth/plymouth.encrypt_install @@ -0,0 +1,52 @@ +#!/bin/bash + +build() { + local mod + + add_module dm-crypt + if [[ $CRYPTO_MODULES ]]; then + for mod in $CRYPTO_MODULES; do + add_module "$mod" + done + else + add_all_modules '/crypto/' + fi + + add_binary "cryptsetup" + add_binary "dmsetup" + add_file "/usr/lib/udev/rules.d/10-dm.rules" + add_file "/usr/lib/udev/rules.d/13-dm-disk.rules" + add_file "/usr/lib/udev/rules.d/95-dm-notify.rules" + add_file "/usr/lib/initcpio/udev/11-dm-initramfs.rules" "/usr/lib/udev/rules.d/11-dm-initramfs.rules" + add_binary "/usr/lib/plymouth/label.so" + add_binary "/usr/lib/plymouth/text.so" + add_file "/usr/share/fonts/TTF/DejaVuSans.ttf" + add_file "/etc/fonts/fonts.conf" + add_file "/etc/fonts/conf.d/60-latin.conf" + + # cryptsetup calls pthread_create(), which dlopen()s libgcc_s.so.1 + add_binary "/usr/lib/libgcc_s.so.1" + + add_runscript +} + +help() { + cat <