diff --git a/srcpkgs/mkinitcpio/files/ucode_install b/srcpkgs/mkinitcpio/files/ucode_install new file mode 100644 index 0000000000..718d0d0e1e --- /dev/null +++ b/srcpkgs/mkinitcpio/files/ucode_install @@ -0,0 +1,23 @@ +#!/bin/bash + +build() { + for bin in /usr/bin/xbps-*; do + add_binary "$bin" + done + + for key in /var/db/xbps/keys/*; do + add_file "$key" + done + + for conf in /usr/share/xbps.d/*; do + add_file "$conf" + done +} + +help() { + cat <