Date: Saturday, January 22, 2022 @ 22:51:54 Author: tpowa Revision: 434918
upgpkg: hwdetect 2022.01-1: bump to latest version Modified: hwdetect/trunk/PKGBUILD hwdetect/trunk/hwdetect ----------+ PKGBUILD | 4 ++-- hwdetect | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-01-22 22:50:41 UTC (rev 434917) +++ PKGBUILD 2022-01-22 22:51:54 UTC (rev 434918) @@ -1,6 +1,6 @@ # Maintainer: Tobias Powalowski <tp...@archlinux.org> pkgname=hwdetect -pkgver=2021.10 +pkgver=2022.01 pkgrel=1 pkgdesc="Hardware detection script with loading modules and mkinitcpio.conf" arch=(any) @@ -12,7 +12,7 @@ 'lvm2: for lvm2 mkinitcpio config support' 'mdadm: for raid mkinitcpio config support') source=(hwdetect) -sha512sums=('c2caada42e4568e325f6d0df4b018512caeb8e3c89be2e23765c015251839782bc2f114485890bec466794bc0c4b897b3e7eb59ca80fe1d049a8eb4b306e2513') +sha512sums=('ffbcbe41d9c8b5904b6b2aa6ced0a271cf64bfa1d3149a20b414a79a6697d7c60b28cf68ee3961c18f139bc0fc228171b5063d6a05eb43c6027728531e5d406d') package() { install -D -m 755 "${srcdir}/hwdetect" "${pkgdir}/usr/bin/hwdetect" Modified: hwdetect =================================================================== --- hwdetect 2022-01-22 22:50:41 UTC (rev 434917) +++ hwdetect 2022-01-22 22:51:54 UTC (rev 434918) @@ -268,7 +268,7 @@ MODULES_INITRAMFS="$MODULES_INITRAMFS $FS" showlist2 "MODULES" \"$MODULES_INITRAMFS\" | sed -e 's/(\ /(/g' -e 's/"\ /"/g' -e 's/\ "/"/g' -e 's/\ \ /\ /g' ;; - --hostcontroller)HOSTCONTROLLER="$(listmods virtio/virtio_pci) $(listmods ata/pata pata_acpi) $(listmods scsi/ /sg.ko /st.ko scsi_mod sr_mod sd_mod) $(listmods message/fusion/) $(listmods drivers/block/ virtio_blk nbd pktcdvd sx8 floppy) $(listmods ata/ pata ata_generic) $(listmods drivers/block/sx8) $(listmods xhci-hcd) $(listmods ehci-hcd) $(listmods uhci-hcd) $(listmods ohci-hcd) $(listmods virtio_blk) $(listmods nvme/)" + --hostcontroller)HOSTCONTROLLER="$(listmods virtio/virtio_pci) $(listmods ata/pata pata_acpi) $(listmods scsi/ /sg.ko /st.ko scsi_mod sr_mod sd_mod) $(listmods message/fusion/) $(listmods drivers/block/ virtio_blk nbd pktcdvd sx8 floppy) $(listmods ata/ pata ata_generic) $(listmods drivers/block/sx8) $(listmods xhci-hcd) $(listmods ehci-hcd) $(listmods uhci-hcd) $(listmods ohci-hcd) $(listmods virtio_blk) $(listmods nvme/) $(listmods xhci-pci)" MODULES_INITRAMFS="$MODULES_INITRAMFS $HOSTCONTROLLER" showlist2 "MODULES" \"$MODULES_INITRAMFS\" | sed -e 's/(\ /(/g' -e 's/"\ /"/g' -e 's/\ "/"/g' -e 's/\ \ /\ /g' ;; @@ -292,7 +292,7 @@ if [ "$HOOKS_DIR" = "" ]; then HOOKS_DIR="/usr/lib/initcpio/install" fi - START_HOOKS="base udev keymap autodetect modconf block pcmcia net dmraid keyboard $ADVANCED filesystems fsck" + START_HOOKS="base udev keymap autodetect modconf block net dmraid keyboard $ADVANCED filesystems fsck" # remove the ones that don't exist on the system for i in ${START_HOOKS}; do if ! [ -e "${HOOKS_DIR}/$i" ]; then @@ -305,9 +305,6 @@ if ! [ "$DMRAID" = "1" ]; then START_HOOKS=$(echo $START_HOOKS | sed -e "s/dmraid//g") fi - if ! [ "$PCMCIA" = "1" ]; then - START_HOOKS=$(echo $START_HOOKS | sed -e "s/pcmcia//g") - fi if ! [ "$NFS" = "1" ]; then START_HOOKS=$(echo $START_HOOKS | sed -e "s/net//g") fi