| Server IP : 172.67.191.97 / Your IP : 104.23.243.196 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/bash-completion/completions/ |
Upload File : |
_fwupdtool_cmd_list=(
'activate'
'build-cabinet'
'clear-history'
'disable-remote'
'disable-test-devices'
'efiboot-create'
'efiboot-delete'
'efiboot-hive'
'efiboot-info'
'efiboot-next'
'efiboot-order'
'efivar-list'
'efivar-files'
'enable-remote'
'enable-test-devices'
'emulation-tag'
'emulation-untag'
'emulation-load'
'esp-list'
'esp-mount'
'esp-unmount'
'firmware-build'
'firmware-convert'
'firmware-export'
'firmware-extract'
'firmware-parse'
'firmware-sign'
'firmware-patch'
'get-bios-setting'
'get-updates'
'get-upgrades'
'get-details'
'get-firmware-types'
'get-firmware-gtypes'
'get-device-flags'
'get-devices'
'get-history'
'get-plugins'
'get-remotes'
'get-report-metadata'
'get-topology'
'get-version-formats'
'hwids'
'update'
'upgrade'
'install'
'install-blob'
'modify-config'
'modify-remote'
'monitor'
'reinstall'
'security'
'security-fix'
'security-undo'
'set-bios-setting'
'switch-branch'
'self-sign'
'smbios-dump'
'attach'
'detach'
'firmware-dump'
'firmware-read'
'refresh'
'verify-update'
'watch'
'unbind-driver'
'bind-driver'
'export-hwids'
'reboot-cleanup'
'vercmp'
)
_fwupdtool_opts=(
'--verbose'
'--allow-reinstall'
'--allow-older'
'--filter'
'--filter-release'
'--force'
'--json'
'--show-all'
'--plugins'
'--prepare'
'--cleanup'
'--filter'
'--method'
'--disable-ssl-strict'
'--no-safety-check'
'--no-search'
'--ignore-checksum'
'--ignore-vid-pid'
'--ignore-requirements'
'--save-backends'
)
fwupd_modify_config_sections=(
'fwupd'
'msr'
'redfish'
'test'
'thunderbolt'
'uefi_capsule'
'dell_kestrel'
)
fwupd_modify_config_opts=(
'ArchiveSizeMax'
'ApprovedFirmware'
'BlockedFirmware'
'DisabledDevices'
'DisabledPlugins'
'EspLocation'
'EnumerateAllDevices'
'HostBkc'
'IdleTimeout'
'IgnorePower'
'OnlyTrusted'
'P2pPolicy'
'ReleaseDedupe'
'ReleasePriority'
'RequireImmutableEnumeration'
'ShowDevicePrivate'
'TestDevices'
'TrustedReports'
'TrustedUids'
'UpdateMotd'
'UriSchemes'
'VerboseDomains'
)
test_modify_config_opts=(
'AnotherWriteRequired'
'CompositeChild'
'DecompressDelay'
'NeedsActivation'
'NeedsReboot'
'RegistrationSupported'
'RequestDelay'
'RequestSupported'
'VerifyDelay'
'WriteDelay'
'WriteSupported'
)
redfish_modify_config_opts=(
'CACheck'
'IpmiDisableCreateUser'
'ManagerResetTimeout'
'Password'
'Uri'
'Username'
'UserUri'
)
uefi_capsule_modify_config_opts=(
'DisableCapsuleUpdateOnDisk'
'DisableShimForSecureBoot'
'EnableEfiDebugging'
'EnableGrubChainLoad'
'OverrideESPMountPoint'
'RebootCleanup'
'RequireESPFreeSpace'
'ScreenWidth'
'ScreenHeight'
)
dell_kestrel_modify_config_opts=(
'UpdateOnDisconnect'
)
reset_config_opts=(
'fwupd'
'msr'
'redfish'
'test'
'thunderbolt'
'uefi_capsule'
)
_show_fwupd_modify_sections()
{
COMPREPLY+=( $(compgen -W '${fwupd_modify_config_sections[@]}' -- "$cur") )
}
_show_fwupd_modify_config()
{
COMPREPLY+=( $(compgen -W '${fwupd_modify_config_opts[@]}' -- "$cur") )
}
_show_test_modify_config()
{
COMPREPLY+=( $(compgen -W '${test_modify_config_opts[@]}' -- "$cur") )
}
_show_redfish_modify_config()
{
COMPREPLY+=( $(compgen -W '${redfish_modify_config_opts[@]}' -- "$cur") )
}
_show_uefi_capsule_modify_config()
{
COMPREPLY+=( $(compgen -W '${uefi_capsule_modify_config_opts[@]}' -- "$cur") )
}
_show_dell_kestrel_modify_config()
{
COMPREPLY+=( $(compgen -W '${dell_kestrel_modify_config_opts[@]}' -- "$cur") )
}
_show_reset_config()
{
COMPREPLY+=( $(compgen -W '${reset_config_opts[@]}' -- "$cur") )
}
_show_remotes()
{
local remotes
remotes="$(command fwupdtool get-remotes --json 2>/dev/null | jq '.Remotes | .[] | .Id')"
COMPREPLY+=( $(compgen -W "${remotes}" -- "$cur") )
}
_show_filters()
{
local flags
flags="$(command fwupdtool get-device-flags 2>/dev/null)"
COMPREPLY+=( $(compgen -W "${flags}" -- "$cur") )
}
_show_firmware_types()
{
local firmware_types
firmware_types="$(command fwupdtool get-firmware-types 2>/dev/null)"
COMPREPLY+=( $(compgen -W "${firmware_types}" -- "$cur") )
}
_show_device_ids()
{
if ! command -v jq &> /dev/null; then
return 0
fi
local description
description="$(command jq '.Devices | .[] | .DeviceId' /var/cache/fwupd/devices.json 2>/dev/null)"
COMPREPLY+=( $(compgen -W "${description}" -- "$cur") )
}
_show_plugins()
{
if ! command -v jq &> /dev/null; then
return 0
fi
local plugins
plugins="$(command fwupdtool get-plugins --json 2>/dev/null | jq '.Plugins | .[] | .Name')"
COMPREPLY+=( $(compgen -W "${plugins}" -- "$cur") )
}
_show_modifiers()
{
COMPREPLY+=( $(compgen -W '${_fwupdtool_opts[@]}' -- "$cur") )
}
_fwupdtool()
{
local cur prev command arg args
COMPREPLY=()
_get_comp_words_by_ref cur prev
_get_first_arg
_count_args
case $prev in
--plugins)
_show_plugins
return 0
;;
--filter)
_show_filters
return 0
;;
esac
case $arg in
get-details|install|install-blob|firmware-dump|firmware-read)
#find files
if [[ "$args" = "2" ]]; then
_filedir
#device ID
elif [[ "$args" = "3" ]]; then
_show_device_ids
fi
;;
emulation-load)
#find files
if [[ "$args" = "2" ]]; then
_filedir
fi
;;
attach|detach|activate|verify-update|reinstall|get-updates)
#device ID
if [[ "$args" = "2" ]]; then
_show_device_ids
fi
;;
firmware-parse|firmware-patch)
#find files
if [[ "$args" = "2" ]]; then
_filedir
#firmware_type
elif [[ "$args" = "3" ]]; then
_show_firmware_types
fi
;;
firmware-convert)
#file in
if [[ "$args" = "2" ]]; then
_filedir
#file out
elif [[ "$args" = "3" ]]; then
_filedir
#firmware_type in
elif [[ "$args" = "4" ]]; then
_show_firmware_types
#firmware_type out
elif [[ "$args" = "5" ]]; then
_show_firmware_types
fi
;;
modify-remote)
#find remotes
if [[ "$args" = "2" ]]; then
_show_remotes
#add key
elif [[ "$args" = "3" ]]; then
local keys
keys="$(command fwupdtool get-remotes | command awk -v pattern="Remote ID:.*${prev}$" '$0~pattern{show=1; next}/Remote/{show=0}{gsub(/:.*/,"")}show')"
COMPREPLY+=( $(compgen -W "${keys}" -- "$cur") )
fi
;;
enable-remote)
#find remotes
if [[ "$args" = "2" ]]; then
_show_remotes
fi
;;
disable-remote)
#find remotes
if [[ "$args" = "2" ]]; then
_show_remotes
fi
;;
modify-config)
if [[ "$args" = "2" ]]; then
_show_fwupd_modify_sections
return 0
elif [[ "$args" = "3" ]]; then
case $prev in
test)
_show_test_modify_config
;;
msr)
COMPREPLY+=( $(compgen -W 'DelayedActivation MinimumSmeKernelVersion' -- "$cur") )
;;
thunderbolt)
COMPREPLY+=( $(compgen -W 'DelayedActivation MinimumKernelVersion' -- "$cur") )
;;
fwupd)
_show_fwupd_modify_config
;;
redfish)
_show_redfish_modify_config
;;
uefi_capsule)
_show_uefi_capsule_modify_config
;;
dell_kestrel)
_show_dell_kestrel_modify_config
;;
esac
return 0
elif [[ "$args" = "4" ]]; then
case $prev in
EnumerateAllDevices|OnlyTrusted|IgnorePower|UpdateMotd|ShowDevicePrivate|ReleaseDedupe|RequireImmutableEnumeration|TestDevices)
COMPREPLY=( $(compgen -W "True False" -- "$cur") )
;;
AnotherWriteRequired|NeedsActivation|NeedsReboot|RegistrationSupported|RequestSupported|WriteSupported)
COMPREPLY=( $(compgen -W "True False" -- "$cur") )
;;
ReleasePriority)
COMPREPLY=( $(compgen -W "local remote" -- "$cur") )
;;
UriSchemes)
COMPREPLY=( $(compgen -W "file https http ipfs file;https;http;ipfs file;https;http https;http" -- "$cur") )
;;
P2pPolicy)
COMPREPLY=( $(compgen -W "none metadata firmware metadata,firmware" -- "$cur") )
;;
IdleTimeout|ArchiveSizeMax|HostBkc|TrustedUids)
;;
ApprovedFirmware|BlockedFirmware)
;;
DisabledDevices)
_show_device_ids
;;
DisabledPlugins)
_show_plugins
;;
EspLocation)
;;
TrustedReports)
;;
VerboseDomains)
;;
esac
return 0;
fi
;;
reset-config)
#find files
if [[ "$args" = "2" ]]; then
_show_reset_config
return 0
fi
;;
*)
#find first command
if [[ "$args" = "1" ]]; then
COMPREPLY=( $(compgen -W '${_fwupdtool_cmd_list[@]}' -- "$cur") )
fi
;;
esac
#modifiers
_show_modifiers
return 0
}
complete -F _fwupdtool fwupdtool