Admin
dashboard
file manager
command
php exec
/
/
usr
/
lib
/
dracut
/
modules.d
/
90pcmcia
path:
go
upload
mkdir
name
type
size
perms
modified
actions
[parent directory]
module-setup.sh
file
562 B
0755
2025-05-01 10:52:37
edit
delete
rename
editing: module-setup.sh
#!/usr/bin/bash # called by dracut check() { return 255 } # called by dracut depends() { echo udev-rules return 0 } # called by dracut installkernel() { instmods pcmcia \ "=drivers/pcmcia" } # called by dracut install() { inst_rules 60-pcmcia.rules inst_multiple -o \ "${udevdir}"/pcmcia-socket-startup \ "${udevdir}"/pcmcia-check-broken-cis # Install the hosts local user configurations if enabled. if [[ $hostonly ]]; then inst_multiple -H -o \ /etc/pcmcia/config.opts fi }
save
cancel