search for: fwtype

Displaying 1 result from an estimated 1 matches for "fwtype".

Did you mean: fstype
2014 Aug 24
1
Library_modules (list of & wiki write permissions)
...odules -------------- next part -------------- #!/bin/bash # syslinux_module_deps - show syslinux module dependencies. # version 0.1 # license MIT # Copyright: Frank lin Piat <fpiat at klabs.be> # # Known bugs: # * on amd64 architecture: ldd don't show module deps for i386. set -e fwtype="bios efi32 efi64" # bash hack here: no recursive associative arrays... # so we declares variables based on the name in $fwtype, thanks to "eval". for fw in $fwtype ; do eval declare -A $fw done ## Extraction libraries dependencies extract() { for fw in $fwtype ; do for...