A .clisprc => .clisprc +1 -0
@@ 0,0 1,1 @@
+(pushnew #p"/usr/share/common-lisp/source/asdf/build/" custom:*load-paths* :test #'equalp)<
\ No newline at end of file
A .config/bspwm/bspwm-9999-put_dialogs_above.patch => .config/bspwm/bspwm-9999-put_dialogs_above.patch +104 -0
@@ 0,0 1,104 @@
+diff --git a/doc/bspwm.1 b/doc/bspwm.1
+index e798b23..937dfc9 100644
+--- a/doc/bspwm.1
++++ b/doc/bspwm.1
+@@ -1342,6 +1342,11 @@ Block the fullscreen state transitions that originate from an EWMH request\&. Th
+ Ignore strut hinting from clients requesting to reserve space (i\&.e\&. task bars)\&.
+ .RE
+ .PP
++\fIput_dialogs_above\fR
++.RS 4
++Put dialogs in the ABOVE stacking layer\&.
++.RE
++.PP
+ \fIcenter_pseudo_tiled\fR
+ .RS 4
+ Center pseudo tiled windows into their tiling rectangles\&. Defaults to
+diff --git a/doc/bspwm.1.asciidoc b/doc/bspwm.1.asciidoc
+index ca504c2..8522ac5 100644
+--- a/doc/bspwm.1.asciidoc
++++ b/doc/bspwm.1.asciidoc
+@@ -774,6 +774,9 @@ Global Settings
+ 'ignore_ewmh_struts'::
+ Ignore strut hinting from clients requesting to reserve space (i.e. task bars).
+
++'put_dialogs_above'::
++ Put dialogs in the ABOVE stacking layer.
++
+ 'center_pseudo_tiled'::
+ Center pseudo tiled windows into their tiling rectangles. Defaults to 'true'.
+
+diff --git a/src/messages.c b/src/messages.c
+index d385259..dbaae04 100644
+--- a/src/messages.c
++++ b/src/messages.c
+@@ -1710,6 +1710,7 @@ void set_setting(coordinates_t loc, char *name, char *value, FILE *rsp)
+ SET_BOOL(pointer_follows_monitor)
+ SET_BOOL(ignore_ewmh_focus)
+ SET_BOOL(ignore_ewmh_struts)
++ SET_BOOL(put_dialogs_above)
+ SET_BOOL(center_pseudo_tiled)
+ SET_BOOL(honor_size_hints)
+ SET_BOOL(removal_adjustment)
+@@ -1841,6 +1842,7 @@ void get_setting(coordinates_t loc, char *name, FILE* rsp)
+ GET_BOOL(pointer_follows_monitor)
+ GET_BOOL(ignore_ewmh_focus)
+ GET_BOOL(ignore_ewmh_struts)
++ GET_BOOL(put_dialogs_above)
+ GET_BOOL(center_pseudo_tiled)
+ GET_BOOL(honor_size_hints)
+ GET_BOOL(removal_adjustment)
+diff --git a/src/rule.c b/src/rule.c
+index 583b238..6f40af3 100644
+--- a/src/rule.c
++++ b/src/rule.c
+@@ -228,6 +228,9 @@ void _apply_window_type(xcb_window_t win, rule_consequence_t *csq)
+ } else if (a == ewmh->_NET_WM_WINDOW_TYPE_DIALOG) {
+ SET_CSQ_STATE(STATE_FLOATING);
+ csq->center = true;
++ if (put_dialogs_above) {
++ SET_CSQ_LAYER(LAYER_ABOVE);
++ }
+ } else if (a == ewmh->_NET_WM_WINDOW_TYPE_DOCK ||
+ a == ewmh->_NET_WM_WINDOW_TYPE_DESKTOP ||
+ a == ewmh->_NET_WM_WINDOW_TYPE_NOTIFICATION) {
+diff --git a/src/settings.c b/src/settings.c
+index 52358f7..bfe3d81 100644
+--- a/src/settings.c
++++ b/src/settings.c
+@@ -65,6 +65,7 @@ bool swallow_first_click;
+ bool ignore_ewmh_focus;
+ bool ignore_ewmh_struts;
+ state_transition_t ignore_ewmh_fullscreen;
++bool put_dialogs_above;
+
+ bool center_pseudo_tiled;
+ bool honor_size_hints;
+@@ -128,6 +129,7 @@ void load_settings(void)
+ ignore_ewmh_focus = IGNORE_EWMH_FOCUS;
+ ignore_ewmh_fullscreen = IGNORE_EWMH_FULLSCREEN;
+ ignore_ewmh_struts = IGNORE_EWMH_STRUTS;
++ put_dialogs_above = PUT_DIALOGS_ABOVE;
+
+ center_pseudo_tiled = CENTER_PSEUDO_TILED;
+ honor_size_hints = HONOR_SIZE_HINTS;
+diff --git a/src/settings.h b/src/settings.h
+index 248860d..f4d9fa7 100644
+--- a/src/settings.h
++++ b/src/settings.h
+@@ -59,6 +59,7 @@
+ #define IGNORE_EWMH_FOCUS false
+ #define IGNORE_EWMH_FULLSCREEN 0
+ #define IGNORE_EWMH_STRUTS false
++#define PUT_DIALOGS_ABOVE false
+
+ #define CENTER_PSEUDO_TILED true
+ #define HONOR_SIZE_HINTS false
+@@ -105,6 +106,7 @@ extern bool swallow_first_click;
+ extern bool ignore_ewmh_focus;
+ extern bool ignore_ewmh_struts;
+ extern state_transition_t ignore_ewmh_fullscreen;
++extern bool put_dialogs_above;
+
+ extern bool center_pseudo_tiled;
+ extern bool honor_size_hints;
M .config/bspwm/bspwmrc => .config/bspwm/bspwmrc +1 -1
@@ 12,7 12,7 @@ bspc config right_padding 0
bspc config click_to_focus any
bspc config honor_size_hints true
bspc config ignore_ewmh_focus true
-bspc config put_dialogs_above true # Needs a patch
+bspc config put_dialogs_above true # Needs bspwm-9999-put_dialogs_above.patch applied
bspc config normal_border_color "#aaaaaa"
bspc config active_border_color "#aaaaaa"
M .config/lemonbar/mus_status.sh => .config/lemonbar/mus_status.sh +9 -5
@@ 33,20 33,24 @@ case "$status" in
buttons="$buttons %{A:mus_client TOGGLE_PLAY_PAUSE:}%{R}$mid_button%{R}%{A}"
buttons="$buttons %{A:mus_client TRACK_NEXT:}%{R}next%{R}%{A}"
buttons="$buttons %{A:mus_client ALBUM_NEXT:}%{R}nextalbm%{R}%{A}"
- buttons="$buttons %{A:mus_client PL_EDIT:}"
+ read -r path
+ path=${path#path }
+ dirpath=$(echo "${path%/*}" | sed "s#'#'\\\\''#g; s#:#\\\\:#g; s#^#'#; s#\$#'#")
+ buttons="$buttons %{A:mus_client PL_EDIT:}%{A3:st -c floating -e ranger $dirpath:}"
msg=$(mbcut -e "$(awk -f mus_fmt.awk)" $mus_maxlen | sed 's#%#%%#g')
+ after="%{A}%{A}"
;;
no_playlist|empty_playlist)
color=$red
buttons="%{A:mus_client pl_edit:}"
+ after="%{A}"
;;
esac
-msg="$msg%{A}"
set +e; mkfifo -- "$fifo" 2>/dev/null; set -e
if command -v timeout >/dev/null
then
- timeout 2 printf "M%s%s%s\n" "$color" "$buttons" "$msg" >"$fifo"
+ timeout 2 printf "M%s%s%s%s\n" "$color" "$buttons" "$msg" "$after"
else
- printf "M%s%s%s\n" "$color" "$buttons" "$msg" >"$fifo"
-fi
+ printf "M%s%s%s%s\n" "$color" "$buttons" "$msg" "$after"
+fi >"$fifo"
M .config/mpv/config => .config/mpv/config +3 -3
@@ 1,5 1,5 @@
#Video
-vo=gpu
+vo=gpu-next
profile=gpu-hq
gpu-api=vulkan
vulkan-async-compute=yes
@@ 8,7 8,7 @@ video-sync=display-resample
interpolation=yes
#Scaling
-scale=ewa_lanczossharp
+scale=ewa_lanczos
cscale=spline36
dscale=ewa_robidouxsharp
tscale=catmull_rom
@@ 25,7 25,7 @@ slang=en,eng
sub-file-paths=Subtitles
demuxer-mkv-subtitle-preroll
sub-font-size=40
-blend-subtitles=yes
+blend-subtitles=no
#Screenshot
screenshot-format=png
M .config/ranger/rc.conf => .config/ranger/rc.conf +5 -3
@@ 631,9 631,11 @@ copytmap <ESC> q Q w <C-c>
map gC cd ~/.config/ranger
map <CR> open_with c
map T terminal
-map Dr shell -f sxiv-manga-reader %f
-map DR shell -f sxiv-manga-reader -c %f
+map Dr shell -f sxiv-manga-reader -o -b %f
+map DR shell -f sxiv-manga-reader -o -b -c %f
map Dv shell -f mpv --save-position-on-quit -- %f
map Ax shell -f archive_extract.sh %f
+map Dm shell -f readlink -f -- %f | mus_client pl_prepend
+map DM shell -f readlink -f -- %f | mus_client pl_append
map Ac eval fm.open_console('shell -f archive_create.sh ' + ' %s', position=27)
-map Am eval fm.open_console('shell -f archive_merge.sh ' + ' %s', position=26)>
\ No newline at end of file
+map Am eval fm.open_console('shell -f archive_merge.sh ' + ' %s', position=26)
M .config/ranger/rifle.conf => .config/ranger/rifle.conf +1 -1
@@ 93,7 93,7 @@ mime ^image, has gimp, X, flag f, label editor = gimp -- "$@"
#-------------------------------------------
# Archives
#-------------------------------------------
-ext cbt|cbz|cbr|cb7, has sxiv-manga-reader, X, flag f = sxiv-manga-reader -- "$@"
+ext cbt|cbz|cbr|cb7, has sxiv-manga-reader, X, flag f = sxiv-manga-reader -o -b -- "$@"
# Define the editor for non-text files + pager as last action
!mime ^text = ask
D .muttrc => .muttrc +0 -45
@@ 1,45 0,0 @@
-folder-hook . "push <collapse-all>"
-push "<shell-escape> mbsync -a <enter>"
-source ~/.mutt/posteo.net.rc
-
-
-macro index,pager <f2> '<sync-mailbox><refresh><enter-command>source ~/.mutt/posteo.net.rc<enter><change-folder>!<enter>'
-macro index,pager \cb "<pipe-message> urlscan <enter>" "call urlscan to extract URLs out of a message"
-macro attach,compose \cb "<pipe-entry> urlscan <enter>" "call urlscan to extract URLs out of a message"
-bind index , collapse-thread
-
-
-set beep_new = yes
-set collapse_unread = no
-set copy = yes
-set dsn_notify = failure,delay
-set edit_headers = yes
-set header_cache = ~/.cache/mutt
-set mail_check = 60
-set mailcap_path = ~/.mutt/mailcap
-set mime_forward = ask-yes
-set mime_forward_rest = yes
-set mbox_type=maildir
-set message_cachedir = ~/.cache/mutt
-set net_inc = 5
-set send_charset = utf-8
-set sort = threads
-set sort_aux = last-date-received
-set uncollapse_jump = yes
-set use_from = yes
-set wait_key = no
-
-set alias_file = ~/.mutt/aliases
-set sort_alias = alias
-set reverse_alias = yes
-source $alias_file
-
-alternative_order text/plain text/html
-auto_view text/html
-auto_view text/x-diff
-source ~/.mutt/colors.rc
-
-ignore *
-unignore From To Cc Bcc Date Subject
-unhdr_order *
-hdr_order From: To: Cc: Bcc: Date: Subject:
M .zshrc => .zshrc +5 -4
@@ 25,16 25,17 @@ alias ffprobe='ffprobe -hide_banner'
alias grep='grep --color=auto'
alias ls='ls --color=auto'
alias ll='ls -lh'
+alias la='ls -lha'
alias lsblk='lsblk -o NAME,MODEL,PARTLABEL,FSTYPE,SIZE,MOUNTPOINT'
alias make='make -j$(nproc)'
alias odhex='od -Ax -t x1z'
-alias rsync='rsync --info=progress2 --archive --sparse --partial --progress \
- --human-readable --update'
-alias vfat_rsync='rsync --info=progress2 --archive --sparse --partial --progress \
- --human-readable --update --no-owner --no-group --no-perms --modify-window=2'
+alias rsync='rsync --info=progress2 --sparse --progress --human-readable'
+alias rsync_vfat='rsync --no-owner --no-group --no-perms --modify-window=2'
alias startx='startx -- -nolisten tcp'
alias tmux='tmux -u'
alias rlsbcl='rlwrap -q \" -m -O "^\*>" sbcl'
+# Only strips CSI and OSC
+alias ansi_strip="sed -E 's#\x1b(\[[\\x30-\x3f]*[\x20-\x2f]*[\x40-\x7e]|\][0-9];[^\x1c\x07]*[\x1c\x07])##g'"
source ~/.zkbd/$TERM
autoload zkbd
D etc/conf.d/agetty => etc/conf.d/agetty +0 -11
@@ 1,11 0,0 @@
-# make agetty quiet
-#quiet="yes"
-
-# Set the baud rate of the terminal line
-#baud=""
-
-# set the terminal type
-#term_type="linux"
-
-# extra options to pass to agetty for this port
-#agetty_options=""
D etc/conf.d/alsasound => etc/conf.d/alsasound +0 -15
@@ 1,15 0,0 @@
-# RESTORE_ON_START:
-# Do you want to restore your mixer settings? If not, your cards will be
-# muted.
-# no - Do not restore state
-# yes - Restore state
-
-RESTORE_ON_START="yes"
-
-# SAVE_ON_STOP:
-# Do you want to save changes made to your mixer volumes when alsasound
-# stops?
-# no - Do not save state
-# yes - Save state
-
-SAVE_ON_STOP="yes"
D etc/conf.d/bootlogd => etc/conf.d/bootlogd +0 -2
@@ 1,2 0,0 @@
-# Put your bootlog options into this
-#BOOTLOGD_ARGS="-l /var/log/boot"
D etc/conf.d/bootmisc => etc/conf.d/bootmisc +0 -15
@@ 1,15 0,0 @@
-# List of /tmp directories we should clean up
-clean_tmp_dirs="/tmp"
-
-# Should we wipe the tmp paths completely or just selectively remove known
-# locks / files / etc... ?
-wipe_tmp="YES"
-
-# Write the initial dmesg log into /var/log/dmesg after boot
-# This may be useful if you need the kernel boot log afterwards
-log_dmesg="YES"
-
-# Save the previous dmesg log to dmesg.old
-# This may be useful if you need to compare the current boot to the
-# previous one.
-previous_dmesg=yes
D etc/conf.d/bozohttpd => etc/conf.d/bozohttpd +0 -11
@@ 1,11 0,0 @@
-# Config file for /etc/init.d/bozohttpd
-
-# necessary stuff
-DATADIR=/var/www/localhost/htdocs
-BIND_ADDRESS=localhost
-LISTEN_PORT=80
-
-# optional stuff
-#USER=daemon
-#INDEX_DEFAULT=index.php
-#APPEND="-C .php /usr/bin/php"
D etc/conf.d/busybox-httpd => etc/conf.d/busybox-httpd +0 -5
@@ 1,5 0,0 @@
-# Config file for /etc/init.d/busybox-httpd
-
-# run "busybox httpd --help" to see all possible options.
-
-HTTPD_OPTS="-h /var/www/localhost/htdocs"
D etc/conf.d/busybox-ntpd => etc/conf.d/busybox-ntpd +0 -6
@@ 1,6 0,0 @@
-# Config file for /etc/init.d/busybox-ntpd
-
-# run "/sbin/ntpd --help" to see all possible options.
-
-# Get time from specified server and run in background
-NTPD_OPTS="-N -p pool.ntp.org"
D etc/conf.d/busybox-watchdog => etc/conf.d/busybox-watchdog +0 -9
@@ 1,9 0,0 @@
-# Config file for /etc/init.d/busybox-watchdog
-
-# run "/sbin/watchdog --help" to see all possible options.
-
-# Periodically write to watchdog device
-WATCHDOG_OPTS="/dev/watchdog"
-
-# optionally set the nice-level
-#SSD_NICELEVEL="-20"
D etc/conf.d/consolefont => etc/conf.d/consolefont +0 -18
@@ 1,18 0,0 @@
-# The consolefont service is not activated by default. If you need to
-# use it, you should run "rc-update add consolefont boot" as root.
-#
-# consolefont specifies the default font that you'd like Linux to use on the
-# console. You can find a good selection of fonts in /usr/share/consolefonts;
-# you shouldn't specify the trailing ".psf.gz", just the font name below.
-# To use the default console font, comment out the CONSOLEFONT setting below.
-consolefont="default8x16"
-
-# consoletranslation is the charset map file to use. Leave commented to use
-# the default one. Have a look in /usr/share/consoletrans for a selection of
-# map files you can use.
-#consoletranslation="8859-1_to_uni"
-
-# unicodemap is the unicode map file to use. Leave commented to use the
-# default one. Have a look in /usr/share/unimaps for a selection of map files
-# you can use.
-#unicodemap="iso01"
D etc/conf.d/dcron => etc/conf.d/dcron +0 -5
@@ 1,5 0,0 @@
-# /etc/conf.d/dcron
-
-# Options to pass to dcron at startup.
-# Default logging is via syslog; use -L to send to file.
-DCRON_OPTS=""
D etc/conf.d/devfs => etc/conf.d/devfs +0 -8
@@ 1,8 0,0 @@
-# OpenRC will attempt each of the following in succession to mount /dev.
-#
-# 1. If there is an entry for /dev in fstab, it will be used.
-# 2. If devtmpfs is defined in the kernel, it will be used.
-# 3. If tmpfs is defined in the kernel, it will be used.
-#
-# Set this to yes if you do not want OpenRC to attempt to mount /dev.
-# skip_mount_dev="NO"
D etc/conf.d/device-mapper => etc/conf.d/device-mapper +0 -1
@@ 1,1 0,0 @@
-RC_AFTER="lvm"
D etc/conf.d/display-manager => etc/conf.d/display-manager +0 -13
@@ 1,13 0,0 @@
-# We always try and start the DM on a static VT. The various DMs normally
-# default to using VT7. If you wish to use the display-manager init
-# script, then you should ensure that the VT checked is the same VT your
-# DM wants to use.
-# We do this check to ensure that you haven't accidentally configured
-# something to run on the VT in your /etc/inittab file so that
-# you don't get a dead keyboard.
-CHECKVT=7
-
-# What display manager do you use ?
-# [ xdm | greetd | gdm | sddm | gpe | lightdm | entrance ]
-# NOTE: If this is set in /etc/rc.conf, that setting will override this one.
-DISPLAYMANAGER="xdm"
D etc/conf.d/dmcrypt => etc/conf.d/dmcrypt +0 -111
@@ 1,111 0,0 @@
-# /etc/conf.d/dmcrypt
-
-# For people who run dmcrypt on top of some other layer (like raid),
-# use rc_need to specify that requirement. See the runscript(8) man
-# page for more information.
-
-#--------------------
-# Instructions
-#--------------------
-
-# Note regarding the syntax of this file. This file is *almost* bash,
-# but each line is evaluated separately. Separate swaps/targets can be
-# specified. The init-script which reads this file assumes that a
-# swap= or target= line starts a new section, similar to lilo or grub
-# configuration.
-
-# Note when using gpg keys and /usr on a separate partition, you will
-# have to copy /usr/bin/gpg to /bin/gpg so that it will work properly
-# and ensure that gpg has been compiled statically.
-# See http://bugs.gentoo.org/90482 for more information.
-
-# Note that the init-script which reads this file detects whether your
-# partition is LUKS or not. No mkfs is run unless you specify a makefs
-# option.
-
-# Global options:
-#----------------
-
-# How long to wait for each timeout (in seconds).
-dmcrypt_key_timeout=1
-
-# Max number of checks to perform (see dmcrypt_key_timeout).
-#dmcrypt_max_timeout=300
-
-# Number of password retries.
-dmcrypt_retries=5
-
-# Arguments:
-#-----------
-# target=<name> == Mapping name for partition.
-# swap=<name> == Mapping name for swap partition.
-# source='<dev>' == Real device for partition.
-# Note: You can (and should) specify a tag like UUID
-# for blkid (see -t option). This is safer than using
-# the full path to the device.
-# key='</path/to/keyfile>[:<mode>]' == Fullpath from / or from inside removable media.
-# remdev='<dev>' == Device that will be assigned to removable media.
-# gpg_options='<opts>' == Default are --quiet --decrypt
-# options='<opts>' == cryptsetup, for LUKS you can only use --readonly
-# loop_file='<file>' == Loopback file.
-# Note: If you omit $source, then a free loopback will
-# be looked up automatically.
-# pre_mount='cmds' == commands to execute before mounting partition.
-# post_mount='cmds' == commands to execute after mounting partition.
-#-----------
-# Supported Modes
-# gpg == decrypt and pipe key into cryptsetup.
-# Note: new-line character must not be part of key.
-# Command to erase \n char: 'cat key | tr -d '\n' > cleanKey'
-
-#--------------------
-# dm-crypt examples
-#--------------------
-
-## swap
-# Swap partitions. These should come first so that no keys make their
-# way into unencrypted swap.
-# If no options are given, they will default to: -c aes -h sha1 -d /dev/urandom
-# If no makefs is given then mkswap will be assumed
-#swap=crypt-swap
-#source='/dev/hda2'
-
-## /home with passphrase
-#target=crypt-home
-#source='/dev/hda5'
-
-## /home with regular keyfile
-#target=crypt-home
-#source='/dev/hda5'
-#key='/full/path/to/homekey'
-
-## /home with gpg protected key
-#target=crypt-home
-#source='/dev/hda5'
-#key='/full/path/to/homekey:gpg'
-
-## /home with regular keyfile on removable media(such as usb-stick)
-#target=crypt-home
-#source='/dev/hda5'
-#key='/full/path/to/homekey'
-#remdev='/dev/sda1'
-
-## /home with gpg protected key on removable media(such as usb-stick)
-#target=crypt-home
-#source='/dev/hda5'
-#key='/full/path/to/homekey:gpg'
-#remdev='/dev/sda1'
-
-## /tmp with regular keyfile
-#target=crypt-tmp
-#source='/dev/hda6'
-#key='/full/path/to/tmpkey'
-#pre_mount='/sbin/mkreiserfs -f -f ${dev}'
-#post_mount='chown root:root ${mount_point}; chmod 1777 ${mount_point}'
-
-## Loopback file example
-#target='crypt-loop-home'
-#source='/dev/loop0'
-#loop_file='/mnt/crypt/home'
-
-# The file must be terminated by a newline. Or leave this comment last.
D etc/conf.d/dmesg => etc/conf.d/dmesg +0 -3
@@ 1,3 0,0 @@
-# Sets the level at which logging of messages is done to the
-# console. See dmesg(1) for more info.
-dmesg_level="1"
D etc/conf.d/fancontrol => etc/conf.d/fancontrol +0 -16
@@ 1,16 0,0 @@
-# /etc/conf.d/fancontrol
-
-# Configuration file
-#FANCONTROL_CONFIGFILE="/etc/fancontrol"
-
-# You can use this configuration option to pass additional options to the
-# start-stop-daemon, see start-stop-daemon(8) for more details.
-# Per default we forces fancontrol into background and wait 1000ms after we
-# have started the service to ensure that the daemon is really up and
-# running.
-#FANCONTROL_SSDARGS="--background --wait 1000"
-
-# The termination timeout (start-stop-daemon parameter "retry") ensures
-# that the service will be terminated within a given time (60 + 5 seconds
-# per default) when you are stopping the service.
-#FANCONTROL_TERMTIMEOUT="TERM/60/KILL/5"
D etc/conf.d/fsck => etc/conf.d/fsck +0 -40
@@ 1,40 0,0 @@
-# Pass any arguments to fsck.
-# By default we preen.
-# Linux systems also force -C0 and -T.
-# If fsck_args is not specified then Linux systems also use -A
-# (and -R if / is rw)
-#fsck_args="-p"
-
-# We can also specify the passno in /etc/fstab to check
-# If you multiplex fsck (ie ln -s fsck /etc/init.d/fsck.late) then you can
-# do an fsck outside of the normal scope, say for /home.
-# Here are some exampes:-
-#fsck_passno="=1 =2"
-#fsck_passno=">1"
-#fsck_passno="<2"
-
-# If passno is not enough granularity, you can also specify mountpoints to
-# check. This should NOT be used for the default non-multiplexed fsck, or your
-# system might not be checked. Additionally, it is mutually exclusive with
-# the fsck_passno setting.
-#fsck_mnt=""
-#fsck_mnt="/home"
-
-# Most modern fs's don't require a full fsck on boot, but for those that do
-# it may be advisable to skip this when running on battery.
-# WARNING: Do not turn this off if you have any JFS partitions.
-fsck_on_battery="YES"
-
-# fsck_shutdown causes fsck to trigger during shutdown as well as startup.
-# The end result of this is that if any periodic non-root filesystem checks are
-# scheduled, under normal circumstances the actual check will happen during
-# shutdown rather than at next boot.
-# This is useful when periodic filesystem checks are causing undesirable
-# delays at startup, but such delays at shutdown are acceptable.
-fsck_shutdown="NO"
-
-# fsck_abort_on_errors can be set to no to cause fsck to not abort on
-# errors.
-# This is useful when periodic filesystem checks are causing undesirable
-# aborts.
-fsck_abort_on_errors="YES"
D etc/conf.d/git-daemon => etc/conf.d/git-daemon +0 -19
@@ 1,19 0,0 @@
-# conf.d file for git-daemon
-#
-# Please check man 1 git-daemon for more information about the options
-# git-daemon accepts. You MUST edit this to include your repositories you wish
-# to serve.
-#
-# Some of the meaningful options are:
-# --syslog --- Enables syslog logging
-# --verbose --- Enables verbose logging
-# --export-all --- Exports all repositories
-# --port=XXXX --- Starts in port XXXX instead of 9418
-#
-GITDAEMON_OPTS="--syslog --base-path=/var/git"
-
-# To run an anonymous git safely, the following user should be able to only
-# read your Git repositories. It should not be able to write to anywhere on
-# your system, esp. not the repositories.
-GIT_USER="nobody"
-GIT_GROUP="nobody"
D etc/conf.d/hdparm => etc/conf.d/hdparm +0 -26
@@ 1,26 0,0 @@
-# /etc/conf.d/hdparm: config file for /etc/init.d/hdparm
-
-#
-# Note that options such as -y which force *immediate* power saving options
-# should generally not be placed here. The hdparm init.d script may run at
-# anytime with respect to other init.d scripts that do system wide drive
-# scans (like the hald script), so they will merely get spun right back up.
-# If you wish to use these options, please use the local.start init.d script
-# instead so that you're guaranteed that it will run last.
-#
-
-# You can either set hdparm arguments for each drive using hdX_args,
-# discX_args, cdromX_args and genericX_args, e.g.
-#
-# hda_args="-d1 -X66"
-# disc1_args="-d1"
-# cdrom0_args="-d1"
-
-# or you can set options for all PATA drives
-pata_all_args="-d1"
-
-# or you can set options for all SATA drives
-sata_all_args=""
-
-# or, you can set hdparm options for all drives
-all_args=""
D etc/conf.d/hostname => etc/conf.d/hostname +0 -2
@@ 1,2 0,0 @@
-# Hostname fallback if /etc/hostname does not exist
-hostname="gentoo-zen5900x"
D etc/conf.d/hwclock => etc/conf.d/hwclock +0 -20
@@ 1,20 0,0 @@
-# Set CLOCK to "UTC" if your Hardware Clock is set to UTC (also known as
-# Greenwich Mean Time). If that clock is set to the local time, then
-# set CLOCK to "local". Note that if you dual boot with Windows, then
-# you should set it to "local".
-clock="UTC"
-
-# If you want the hwclock script to set the system time (software clock)
-# to match the current hardware clock during bootup, leave this
-# commented out.
-# However, you can set this to "NO" if you are running a modern kernel
-# and using NTP to synchronize your system clock.
-#clock_hctosys="YES"
-
-# If you do not want to set the hardware clock to the current system
-# time (software clock) during shutdown, set this to no.
-#clock_systohc="YES"
-
-# If you wish to pass any other arguments to hwclock during bootup,
-# you may do so here. Alpha users may wish to use --arc or --srm here.
-clock_args=""
D etc/conf.d/ip6tables => etc/conf.d/ip6tables +0 -27
@@ 1,27 0,0 @@
-# /etc/conf.d/ip6tables
-
-# Set wait option for xtables lock in seconds
-# DEFAULT: 60
-#IPTABLES_LOCK_WAIT_TIME="60"
-
-# Set wait interval option for xtables lock in microseconds
-# DEFAULT: 1000
-#IPTABLES_LOCK_WAIT_INTERVAL="1000"
-
-# Location in which ip6tables initscript will save set rules on
-# service shutdown
-IP6TABLES_SAVE="/var/lib/ip6tables/rules-save"
-
-# Options to pass to ip6tables-save and ip6tables-restore
-SAVE_RESTORE_OPTIONS="-c"
-
-# Save state on stopping ip6tables
-SAVE_ON_STOP="yes"
-
-# If you need to log ip6tables messages as soon as ip6tables starts,
-# AND your logger does NOT depend on the network, then you may wish
-# to uncomment the next line.
-# If your logger depends on the network, and you uncomment this line
-# you will create an unresolvable circular dependency during startup.
-# After commenting or uncommenting this line, you must run 'rc-update -u'.
-#rc_use="logger"
D etc/conf.d/iptables => etc/conf.d/iptables +0 -27
@@ 1,27 0,0 @@
-# /etc/conf.d/iptables
-
-# Set wait option for xtables lock in seconds
-# DEFAULT: 60
-#IPTABLES_LOCK_WAIT_TIME="60"
-
-# Set wait interval option for xtables lock in microseconds
-# DEFAULT: 1000
-#IPTABLES_LOCK_WAIT_INTERVAL="1000"
-
-# Location in which iptables initscript will save set rules on
-# service shutdown
-IPTABLES_SAVE="/var/lib/iptables/rules-save"
-
-# Options to pass to iptables-save and iptables-restore
-SAVE_RESTORE_OPTIONS="-c"
-
-# Save state on stopping iptables
-SAVE_ON_STOP="yes"
-
-# If you need to log iptables messages as soon as iptables starts,
-# AND your logger does NOT depend on the network, then you may wish
-# to uncomment the next line.
-# If your logger depends on the network, and you uncomment this line
-# you will create an unresolvable circular dependency during startup.
-# After commenting or uncommenting this line, you must run 'rc-update -u'.
-#rc_use="logger"
D etc/conf.d/keymaps => etc/conf.d/keymaps +0 -23
@@ 1,23 0,0 @@
-# Use keymap to specify the default console keymap. There is a complete tree
-# of keymaps in /usr/share/keymaps to choose from.
-keymap="fr-pc"
-
-# Should we first load the 'windowkeys' console keymap? Most x86 users will
-# say "yes" here. Note that non-x86 users should leave it as "no".
-# Loading this keymap will enable VT switching (like ALT+Left/Right)
-# using the special windows keys on the linux console.
-windowkeys="YES"
-
-# The maps to load for extended keyboards. Most users will leave this as is.
-extended_keymaps=""
-#extended_keymaps="backspace keypad euro2"
-
-# Tell dumpkeys(1) to interpret character action codes to be
-# from the specified character set.
-# This only matters if you set unicode="yes" in /etc/rc.conf.
-# For a list of valid sets, run `dumpkeys --help`
-dumpkeys_charset=""
-
-# Some fonts map AltGr-E to the currency symbol instead of the Euro.
-# To fix this, set to "yes"
-fix_euro="NO"
D etc/conf.d/killprocs => etc/conf.d/killprocs +0 -6
@@ 1,6 0,0 @@
-# If you wish to pass any options to kill_all during shutdown,
-# you should do so here.
-#
-# The setting is called killall5_opts because the options here are meant
-# to be identical to those you could pass to killall5.
-killall5_opts=""
D etc/conf.d/lm_sensors => etc/conf.d/lm_sensors +0 -4
@@ 1,4 0,0 @@
-# /etc/conf.d/lm_sensors
-
-# NOTE:
-# For module loading please use /etc/modules-load.d/lm_sensors.conf
D etc/conf.d/localmount => etc/conf.d/localmount +0 -10
@@ 1,10 0,0 @@
-# Stop the unmounting of certain points.
-# This could be useful for some NFS related work.
-#no_umounts="/dir1:/var/dir2"
-#
-# Mark certain mount points as critical.
-# This contains a space separated list of mount points which should be
-# considered critical. If one of these mount points cannot be mounted,
-# localmount will fail.
-# By default, this is empty.
-#critical_mounts="/home /var"
D etc/conf.d/lvm => etc/conf.d/lvm +0 -9
@@ 1,9 0,0 @@
-# If LVM is built with udev, you must ensure udev is running first!
-# Otherwise it will hang
-rc_need="udev"
-
-# LVM should normally only be started after mdraid is available
-# this is because LVM physical volumes are very often MD devices.
-rc_after="mdraid"
-
-# vim: ft=gentoo-conf-d
D etc/conf.d/modules => etc/conf.d/modules +0 -22
@@ 1,22 0,0 @@
-# Linux users can define a list of modules for a specific kernel version,
-# a released kernel version, a main kernel version or all kernel versions.
-# The most specific versioned variable will take precedence.
-# FreeBSD users can only use the modules="foo bar" setting.
-#modules_2_6_23_gentoo_r5="ieee1394 ohci1394"
-#modules_2_6_23="tun ieee1394"
-#modules_2_6="tun"
-#modules_2="ipv6"
-#modules="ohci1394"
-
-# Linux users can give the modules some arguments if needed, per version
-# if necessary.
-# Again, the most specific versioned variable will take precedence.
-# This is not supported on FreeBSD.
-#module_ieee1394_args="debug"
-#module_ieee1394_args_2_6_23_gentoo_r5="debug2"
-#module_ieee1394_args_2_6_23="debug3"
-#module_ieee1394_args_2_6="debug4"
-#module_ieee1394_args_2="debug5"
-
-# You should consult your kernel documentation and configuration
-# for a list of modules and their options.
D etc/conf.d/mtab => etc/conf.d/mtab +0 -13
@@ 1,13 0,0 @@
-# As far as we are aware, there are no modern linux tools or use cases
-# which require /etc/mtab to be a separate file from /proc/self/mounts,
-# so this setting should be commented out.
-# If it is set to yes, please comment it out and run this command:
-# # rc-service mtab restart
-# In the future, the mtab service will be removed since we are not aware
-# of any need to manipulate /etc/mtab as a separate file from
-# /proc/self/mounts.
-# If you have a technical reason we should keep this support, please
-# open an issue at https://github.com/openrc/openrc/issues and let us
-# know about your situation.
-# This setting controls whether /etc/mtab is a file or symbolic link.
-# mtab_is_file=no
D etc/conf.d/net => etc/conf.d/net +0 -3
@@ 1,3 0,0 @@
-config_enp6s0="192.168.1.2 netmask 255.255.255.0"
-routes_enp6s0="default via 192.168.1.1"
-dns_servers_enp6s0="127.0.0.1"
D etc/conf.d/net-online => etc/conf.d/net-online +0 -18
@@ 1,18 0,0 @@
-# The interfaces setting controls which interfaces the net-online
-# service considers in deciding whether the network is active. The
-# default is all interfaces that support ethernet.
-#interfaces=""
-
-# This setting controls whether a ping test is included in the test for
-# network connectivity after all interfaces are active.
-#include_ping_test=no
-
-# This setting is the host to attempt to ping if the above is yes.
-# The default is google.com.
-#ping_test_host=some.host.name
-
-# The timeout setting controls how long the net-online service waits
-# for the network to be configured.
-# The default is 120 seconds.
-# if this is set to 0, the wait is infinite.
-#timeout=120
D etc/conf.d/netmount => etc/conf.d/netmount +0 -47
@@ 1,47 0,0 @@
-# You will need to set the dependencies in the netmount script to match
-# the network configuration tools you are using. This should be done in
-# this file by following the examples below, and not by changing the
-# service script itself.
-#
-# Each of these examples is meant to be used separately. So, for
-# example, do not set rc_need to something like "net.eth0 dhcpcd".
-#
-# If you are using newnet and configuring your interfaces with static
-# addresses with the network script, you should use this setting.
-#
-#rc_need="network"
-#
-# If you are using oldnet, you must list the specific net.* services you
-# need.
-#
-# This example assumes all of your netmounts can be reached on
-# eth0.
-#
-#rc_need="net.eth0"
-#
-# This example assumes some of your netmounts are on eth1 and some
-# are on eth2.
-#
-#rc_need="net.eth1 net.eth2"
-#
-# If you are using a dynamic network management tool like
-# NetworkManager, dhcpcd in standalone mode, wicd, badvpn-ncd, etc, to
-# manage the network interfaces with the routes to your netmounts, you
-# should list that tool.
-#
-#rc_need="NetworkManager"
-#rc_need="dhcpcd"
-#rc_need="wicd"
-#
-# The default setting is designed to be backward compatible with our
-# current setup, but you are highly discouraged from using this. In
-# other words, please change it to be more suited to your system.
-#
-rc_need="net"
-#
-# Mark certain mount points as critical.
-# This contains aspace separated list of mount points which should be
-# considered critical. If one of these mount points cannot be mounted,
-# netmount will fail.
-# By default, this is empty.
-#critical_mounts="/home /var"
D etc/conf.d/opentmpfiles-dev => etc/conf.d/opentmpfiles-dev +0 -2
@@ 1,2 0,0 @@
-# Extra options to pass to tmpfiles
-#tmpfiles_opts=""
D etc/conf.d/opentmpfiles-setup => etc/conf.d/opentmpfiles-setup +0 -2
@@ 1,2 0,0 @@
-# Extra options to pass to tmpfiles
-#tmpfiles_opts=""
D etc/conf.d/pciparm => etc/conf.d/pciparm +0 -28
@@ 1,28 0,0 @@
-# PCI tweaking article:
-# http://www.gentoo.org/doc/en/articles/hardware-stability-p2.xml
-#
-# Apply to all devices:
-# PCIPARM_ALL="...."
-# Cards also can be addressed by vid:pid or by bus:slot.func
-# (see setpci man page relative to -d and -s options)
-# PCIPARM_(BUS|VENDOR)_#="...."
-# Where # is sequentially numbered from zero.
-
-# Examples:
-# "open up" the PCI bus by allowing fairly long bursts
-# for all devices, increasing performance
-# (equivalent to: setpci -v -d *:* latency_timer=b0)
-#PCIPARM_ALL="latency_timer=b0"
-
-# maximize latency timers for network and audio,
-# allowing them to transmit more data per burst,
-# preventing buffer over/under-run conditions
-#PCIPARM_BUS_0="00:04.0 latency_timer=ff"
-#PCIPARM_BUS_1="01:04.0 latency_timer=ff"
-#PCIPARM_VENDOR_0="1057:3410 latency_timer=ff"
-
-# -v : whether to be verbose about changes
-# -D : dry-run, no commit
-# -f : do not warn if the change is already set
-# (see the setpci manpage for more advanced options)
-SETPCI_OPT="-f"
D etc/conf.d/pydoc-2.7 => etc/conf.d/pydoc-2.7 +0 -6
@@ 1,6 0,0 @@
-# /etc/init.d/pydoc.conf
-
-# This file contains the configuration for pydoc's internal webserver.
-
-# Default port for Python's pydoc server.
-PYDOC2_7_PORT="7464"
D etc/conf.d/pydoc-3.10 => etc/conf.d/pydoc-3.10 +0 -6
@@ 1,6 0,0 @@
-# /etc/init.d/pydoc.conf
-
-# This file contains the configuration for pydoc's internal webserver.
-
-# Default port for Python's pydoc server.
-PYDOC3_10_PORT="7464"
D etc/conf.d/pydoc-3.6 => etc/conf.d/pydoc-3.6 +0 -6
@@ 1,6 0,0 @@
-# /etc/init.d/pydoc.conf
-
-# This file contains the configuration for pydoc's internal webserver.
-
-# Default port for Python's pydoc server.
-PYDOC3_6_PORT="7464"
D etc/conf.d/pydoc-3.7 => etc/conf.d/pydoc-3.7 +0 -6
@@ 1,6 0,0 @@
-# /etc/init.d/pydoc.conf
-
-# This file contains the configuration for pydoc's internal webserver.
-
-# Default port for Python's pydoc server.
-PYDOC3_7_PORT="7464"
D etc/conf.d/pydoc-3.9 => etc/conf.d/pydoc-3.9 +0 -6
@@ 1,6 0,0 @@
-# /etc/init.d/pydoc.conf
-
-# This file contains the configuration for pydoc's internal webserver.
-
-# Default port for Python's pydoc server.
-PYDOC3_9_PORT="7464"
D etc/conf.d/rsyncd => etc/conf.d/rsyncd +0 -5
@@ 1,5 0,0 @@
-# /etc/conf.d/rsyncd: config file for /etc/init.d/rsyncd
-
-# see man pages for rsync or run `rsync --help`
-# for valid cmdline options
-#RSYNC_OPTS=""
D etc/conf.d/smartd => etc/conf.d/smartd +0 -4
@@ 1,4 0,0 @@
-# /etc/conf.d/smartd: config file for /etc/init.d/smartd
-
-# Insert any other options needed
-SMARTD_OPTS=""
D etc/conf.d/sshd => etc/conf.d/sshd +0 -33
@@ 1,33 0,0 @@
-# /etc/conf.d/sshd: config file for /etc/init.d/sshd
-
-# Where is your sshd_config file stored?
-
-SSHD_CONFDIR="${RC_PREFIX%/}/etc/ssh"
-
-
-# Any random options you want to pass to sshd.
-# See the sshd(8) manpage for more info.
-
-SSHD_OPTS=""
-
-
-# Wait one second (length chosen arbitrarily) to see if sshd actually
-# creates a PID file, or if it crashes for some reason like not being
-# able to bind to the address in ListenAddress.
-
-#SSHD_SSD_OPTS="--wait 1000"
-
-
-# Pid file to use (needs to be absolute path).
-
-#SSHD_PIDFILE="${RC_PREFIX%/}/run/sshd.pid"
-
-
-# Path to the sshd binary (needs to be absolute path).
-
-#SSHD_BINARY="${RC_PREFIX%/}/usr/sbin/sshd"
-
-
-# Path to the ssh-keygen binary (needs to be absolute path).
-
-#SSHD_KEYGEN_BINARY="${RC_PREFIX%/}/usr/bin/ssh-keygen"
D etc/conf.d/stmpfiles-dev => etc/conf.d/stmpfiles-dev +0 -2
@@ 1,2 0,0 @@
-# Extra options to pass to stmpfiles
-#stmpfiles_opts=""
D etc/conf.d/stmpfiles-setup => etc/conf.d/stmpfiles-setup +0 -2
@@ 1,2 0,0 @@
-# Extra options to pass to stmpfiles
-#stmpfiles_opts=""
D etc/conf.d/svnserve => etc/conf.d/svnserve +0 -10
@@ 1,10 0,0 @@
-# The commented variables in this file are the defaults that are used
-# in the init-script. You don't need to uncomment them except to
-# customize them to different values.
-
-# Options for svnserve
-#SVNSERVE_OPTS="--root=/var/svn"
-
-# User and group as which to run svnserve
-#SVNSERVE_USER="svn"
-#SVNSERVE_GROUP="svnusers"
D etc/conf.d/swap => etc/conf.d/swap +0 -13
@@ 1,13 0,0 @@
-# If you are only using local swap partitions, you should not change
-# this file. Otherwise, you need to uncomment the below rc_before line
-# followed by the appropriate rc_need line.
-#rc_before="!localmount"
-#
-# If you are using swap files stored on local file systems, uncomment
-# this line.
-#rc_need="localmount"
-#
-# If you are using swap files stored on network file systems or swap
-# partitions stored on network block devices such as iSCSI, uncomment
-# this line.
-#rc_need="netmount"
D etc/conf.d/sysklogd => etc/conf.d/sysklogd +0 -3
@@ 1,3 0,0 @@
-# Config file for /etc/init.d/sysklogd
-
-SYSLOGD="-m 0 -s -s"
D etc/conf.d/tor => etc/conf.d/tor +0 -3
@@ 1,3 0,0 @@
-#
-# Set the file limit
-rc_ulimit="-n 30000"
D etc/conf.d/transmission-daemon => etc/conf.d/transmission-daemon +0 -15
@@ 1,15 0,0 @@
-# This is the transmission-daemon configuration file. For other options and
-# better explanation, take a look at transmission-daemon manual page Note: it's
-# better to configure some settings (like username/password) in
-# /var/lib/transmission/config/settings.json to avoid other users see it with `ps`
-
-# Parameters to pass to transmission-daemon
-# TRANSMISSION_OPTIONS=""
-
-# Run daemon as another user (username or username:groupname)
-# If you change this setting, chown -R /var/lib/transmission/config <and download directory, check web settings>
-#runas_user=transmission
-
-# Location of logfile (should be writeable for runas_user user)
-# Set logfile=syslog to use syslog for logging
-#logfile=/var/log/transmission/transmission.log
D etc/conf.d/udev => etc/conf.d/udev +0 -9
@@ 1,9 0,0 @@
-# /etc/conf.d/udev: config file for udev
-
-# Add extra command line options to udevd, use with care
-# udevd --help for possible values
-#udev_opts=""
-
-# Run udevd --debug and write output to /run/udevdebug.log
-# Should not be kept on as it fills diskspace slowly
-#udev_debug="YES"
D etc/conf.d/udev-settle => etc/conf.d/udev-settle +0 -5
@@ 1,5 0,0 @@
-# /etc/conf.d/udev-settle: config file for udev-settle
-
-# Timeout in seconds to wait for processing of uevents at boot.
-# There should be no need to change this.
-#udev_settle_timeout=120
D etc/conf.d/udev-trigger => etc/conf.d/udev-trigger +0 -32
@@ 1,32 0,0 @@
-# /etc/conf.d/udev-trigger: config file for udev-trigger
-
-# udev can trigger coldplug events which cause services to start and
-# kernel modules to be loaded.
-# Services are deferred to start in the boot runlevel.
-# Set rc_coldplug="NO" if you don't want this.
-# If you want module coldplugging but not coldplugging of services then you
-# can disable service coldplugging in baselayout/openrc config files.
-# The setting is named different in different versions.
-# in /etc/rc.conf: rc_hotplug="!*" or
-# in /etc/conf.d/rc: rc_plug_services="!*"
-#rc_coldplug="YES"
-
-# We can create a /dev/root symbolic link to point to the root device in
-# some situations. This is on by default because some software relies on
-# it,. However, this software should be fixed to not do this.
-# For more information, see
-# https://bugs.gentoo.org/show_bug.cgi?id=438380.
-# If you are not using any affected software, you do not need this, so
-# feel free to turn it off.
-#rc_dev_root_symlink="YES"
-
-# Run udevadmin monitor to get a log of all events
-# in /run/udevmonitor.log
-#udev_monitor="YES"
-
-# Keep udevmonitor running after populating /dev.
-#udev_monitor_keep_running="no"
-
-# Set cmdline options for udevmonitor.
-# could be some of --env --kernel --udev
-#udev_monitor_opts="--env"
D etc/conf.d/unbound => etc/conf.d/unbound +0 -36
@@ 1,36 0,0 @@
-# /etc/conf.d/unbound
-
-# Configuration file
-#UNBOUND_CONFFILE="/etc/unbound/unbound.conf"
-
-# PID file
-# This is a fallback value which should NOT be changed. If you ever need
-# to change PID file, please change value in configuration file instead!
-#UNBOUND_PIDFILE="/run/unbound.pid"
-
-# You can use this configuration option to pass additional options to the
-# start-stop-daemon, see start-stop-daemon(8) for more details.
-# Per default we wait 1000ms after we have started the service to ensure
-# that the daemon is really up and running.
-#UNBOUND_SSDARGS="--wait 1000"
-
-# The termination timeout (start-stop-daemon parameter "retry") ensures
-# that the service will be terminated within a given time (25 + 5 seconds
-# per default) when you are stopping the service.
-#UNBOUND_TERMTIMEOUT="TERM/25/KILL/5"
-
-# Options to unbound
-# See unbound(8) for more details
-# Notes:
-# * Do not specify another CONFIGFILE but use the variable above to change the location
-#UNBOUND_OPTS=""
-
-# If you want to preserve unbound's cache, set the following variable to
-# a non-zero value. In this case unbound's cache will be dumped to disk
-# before shutdown and loaded right after start.
-# To be able to dump and load cache you have to set up keys (use `unbound-control-setup`)
-# and need to set 'control-enable: yes' in your configuration!
-# WARNING: If you don't know what you are doing you should NOT use this
-# feature. Loading the cache with old or wrong data can result in
-# old or wrong data being returned to clients.
-#UNBOUND_PRESERVE_CACHE=""
D etc/conf.d/urandom => etc/conf.d/urandom +0 -5
@@ 1,5 0,0 @@
-# Sometimes you want to have urandom start before "localmount"
-# (say for crypt swap), so you will need to customize this
-# behavior. If you have /var on a separate partition, then
-# make sure this path lives on your root device somewhere.
-urandom_seed="/var/lib/misc/random-seed"
D etc/conf.d/wpa_supplicant => etc/conf.d/wpa_supplicant +0 -10
@@ 1,10 0,0 @@
-# conf.d file for wpa_supplicant
-
-# uncomment this if wpa_supplicant starts up before your network interface
-# is ready and it causes issues
-# rc_want="dev-settle"
-
-# Please check man 8 wpa_supplicant for more information about the options
-# wpa_supplicant accepts.
-#
-wpa_supplicant_args="-B -M -c/etc/wpa_supplicant/wpa_supplicant.conf"
D etc/conf.d/xdm => etc/conf.d/xdm +0 -10
@@ 1,10 0,0 @@
-# We always try and start X on a static VT. The various DMs normally default
-# to using VT7. If you wish to use the xdm init script, then you should ensure
-# that the VT checked is the same VT your DM wants to use. We do this check to
-# ensure that you haven't accidentally configured something to run on the VT
-# in your /etc/inittab file so that you don't get a dead keyboard.
-CHECKVT=7
-
-# What display manager do you use ? [ xdm | gdm | sddm | gpe | lightdm | entrance ]
-# NOTE: If this is set in /etc/rc.conf, that setting will override this one.
-DISPLAYMANAGER="xdm"
D etc/conf.d/zram-init => etc/conf.d/zram-init +0 -120
@@ 1,120 0,0 @@
-# zram settings...
-
-# load zram kernel module on start?
-load_on_start=yes
-
-# unload zram kernel module on stop?
-unload_on_stop=yes
-
-# Number of devices.
-# This value is also passed to the kernel module on modprobe.
-num_devices=1
-
-# For each device, specify the following variables
-# Omitting them is the same as specifying them as empty: It uses defaults
-# type0, type1, ... are the variables for the types
-# size0, size1, ... are the variables for the sizes (in MB)
-# mlim0, mlim1, ... are the variables for the maximal uncompressed memory (MB)
-# back0, back1, ... are the variables for the backup device
-# maxs0, maxs1, ... are the variables for the maximal (parallel) streams
-# algo0, algo1, ... are the variables for the compression algorithms
-# flag0, flag1, ... are the variables for the flags
-# labl0, labl1, ... are the variables for the label name (if you want some)
-# uuid0, uuid1, ... are the variables for the UUID (if you want to force it)
-# args0, args1, ... are the variables for additional arguments to zram-init
-# (args0, args1, ... are eval'd, so quote correspondingly!)
-# notr0, notr1, ... are the flags for "do not trim (discard)" (if nonempty)
-# (set notr* to a nonempty value only for linux-3.14 or earlier or when you
-# are prepared to waste a lot of memory for a possibly slight speed increase)
-# The following are ignored for type swap but not for the other types:
-# opts0, opts1, ... are the variables for the mount options
-# mode0, mode1, ... are the variables for the directory mode
-# owgr0, owgr1, ... are the variables for the directory owner:group
-#
-# If the size is 0 (or empty) the device is ignored by the script.
-#
-# Available types:
-# "swap" The device is initialized as a swap device.
-# The flags variable specifies the priority (16383 if empty).
-# Use "-" in the flags variable for the default priority (-1)
-# "/..." The device is mounted on /...
-# The flags variable specifies the type (ext2, ext4, or btrfs;
-# default is ext4)
-# "-" The filesystem (specified by flags as above) is created in
-# /dev/zram$NUM but not mounted
-# Devices with other types are ignored by the script
-#
-# Only variables with numbers 0 ... num_devices-1 are used by the script.
-
-# swap
-type0=swap
-flag0= # The default "16383" is fine for us
-size0=8192 # in MB
-mlim0= # no hard memory limit
-back0=/dev/disk/by-partlabel/zram_backup
-notr0= # keep the default on linux-3.15 or newer
-maxs0=4 # maximum number of parallel processes for this device
-algo0=zstd # zstd (since linux-4.18), lz4 (since linux-3.15), or lzo.
- # Size: zstd (best) > lzo > lz4. Speed: lz4 (best) > zstd > lzo
-labl0=zram_swap # the label name
-uuid0= # Do not force UUID
-args0= # we could e.g. have set args0="-L 'zram_swap'" instead of using labl0
-
-# /tmp
-# If you use this, you should put zram-init into the boot runlevel,
-# and services using /tmp should be in the default runlevel and/or have
-# rc_need=zram-init in their /etc/conf.d/... file
-type1=/tmp
-flag1=ext4
-size1=2048
-mlim1= # no hard memory limit
-back1= # no backup device
-opts1="strictatime,nosuid,nodev,noexec" # e.g. "relatime" or "noatime" are also reasonable choices
-mode1=1777
-owgr1= # No reason to change the default "root:root"
-notr1= # keep the default on linux-3.15 or newer
-maxs1=2
-algo1=zstd
-labl1=tmp_dir
-uuid1=
-args1=
-
-# /var/tmp - 1G
-type2=/var/tmp
-flag2=ext2
-size2=1024
-mlim2= # no hard memory limit
-back2= # no backup device
-opts2=relatime # e.g. "noatime" or "strictatime" are also reasonable choices
-mode2=1777
-owgr2= # No reason to change the default "root:root"
-notr2= # keep the default on linux-3.15 or newer
-maxs2=1
-algo2=zstd
-labl2=var_tmp_dir
-uuid2=
-args2=
-
-# Artificial example with btrfs
-type3=- # Only format the filesystem but actually do not mount it
-flag3=btrfs
-size3=1024
-maxs3=1
-algo3=zstd
-labl3=zbtrfs
-uuid3=
-args3=
-
-# swap - 500M
-# With current kernels, Instead of adding an additional swap device,
-# you better increase the size and maxs value of the first swap device.
-# Thus, the following makes only sense for older kernels not supporting maxs.
-# For this reason, the following is not used by the default (num_devices=3).
-type3=swap
-flag3=
-size3=512
-maxs3=1
-algo3=zstd
-labl3=zram_swap2
-uuid3=
-args3=
A etc/crontab => etc/crontab +5 -0
@@ 0,0 1,5 @@
+#Minutes Hours Day Month Weekday Command
+40 17 * * * ~/bin/testnet.sh && haggle.tcl ~/Programming/haggle/data/catalog.tcllist >>/tmp/cron.log 2>&1
+45 17 * * * ~/bin/testnet.sh mangadex.org && mdex_monitor.tcl -single-feed -autodl ~/Data/Documents/Mangas/mangadex-autodl/catalog.tcllist >>/tmp/cron.log 2>&1
+0 18 * * 1-5 ~/bin/testnet.sh && sfeed_update >>/tmp/cron.log 2>&1 && pkill -HUP sfeed_curses
+0 */3 * * 6,0 ~/bin/testnet.sh && sfeed_update >>/tmp/cron.log 2>&1 && pkill -HUP sfeed_curses
A etc/default/grub => etc/default/grub +74 -0
@@ 0,0 1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+#
+# To populate all changes in this file you need to regenerate your
+# grub configuration file afterwards:
+# 'grub-mkconfig -o /boot/grub/grub.cfg'
+#
+# See the grub info page for documentation on possible variables and
+# their associated values.
+
+GRUB_DISTRIBUTOR="Gentoo"
+
+# Default menu entry
+#GRUB_DEFAULT=0
+
+# Boot the default entry this many seconds after the menu is displayed
+#GRUB_TIMEOUT=5
+#GRUB_TIMEOUT_STYLE=menu
+
+# Append parameters to the linux kernel command line
+GRUB_CMDLINE_LINUX="raid=noautodetect"
+#
+# Examples:
+#
+# Boot with network interface renaming disabled
+# GRUB_CMDLINE_LINUX="net.ifnames=0"
+#
+# Boot with systemd instead of sysvinit (openrc)
+# GRUB_CMDLINE_LINUX="init=/usr/lib/systemd/systemd"
+
+# Append parameters to the linux kernel command line for non-recovery entries
+#GRUB_CMDLINE_LINUX_DEFAULT=""
+
+# Uncomment to disable graphical terminal (grub-pc only)
+#GRUB_TERMINAL=console
+
+# The resolution used on graphical terminal.
+# Note that you can use only modes which your graphic card supports via VBE.
+# You can see them in real GRUB with the command `vbeinfo'.
+#GRUB_GFXMODE=640x480
+
+# Set to 'text' to force the Linux kernel to boot in normal text
+# mode, 'keep' to preserve the graphics mode set using
+# 'GRUB_GFXMODE', 'WIDTHxHEIGHT'['xDEPTH'] to set a particular
+# graphics mode, or a sequence of these separated by commas or
+# semicolons to try several modes in sequence.
+#GRUB_GFXPAYLOAD_LINUX=
+
+# Path to theme spec txt file.
+# The starfield is by default provided with use truetype.
+# NOTE: when enabling custom theme, ensure you have required font/etc.
+#GRUB_THEME="/boot/grub/themes/starfield/theme.txt"
+
+# Background image used on graphical terminal.
+# Can be in various bitmap formats.
+#GRUB_BACKGROUND="/boot/grub/mybackground.png"
+
+# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel
+#GRUB_DISABLE_LINUX_UUID=true
+GRUB_DISABLE_LINUX_PARTUUID=false
+
+# Uncomment to disable generation of recovery mode menu entries
+#GRUB_DISABLE_RECOVERY=true
+
+# Uncomment to disable generation of the submenu and put all choices on
+# the top-level menu.
+# Besides the visual affect of no sub menu, this makes navigation of the
+# menu easier for a user who can't see the screen.
+#GRUB_DISABLE_SUBMENU=y
+
+# Uncomment to play a tone when the main menu is displayed.
+# This is useful, for example, to allow users who can't see the screen
+# to know when they can make a choice on the menu.
+#GRUB_INIT_TUNE="60 800 1"
A etc/fstab => etc/fstab +33 -0
@@ 0,0 1,33 @@
+# /etc/fstab: static file system information.
+#
+# noatime turns off atimes for increased performance (atimes normally aren't
+# needed); notail increases performance of ReiserFS (at the expense of storage
+# efficiency). It's safe to drop the noatime options if you want and to
+# switch between notail / tail freely.
+#
+# The root filesystem should have a pass number of either 0 or 1.
+# All other filesystems should have a pass number of 0 or greater than 1.
+#
+# See the manpage fstab(5) for more information.
+#
+
+# <fs> <mountpoint> <type> <opts> <dump/pass>
+
+# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
+#
+# NOTE: Even though we list ext4 as the type here, it will work with ext2/ext3
+# filesystems. This just tells the kernel to use the ext4 driver.
+#
+# NOTE: You can use full paths to devices like /dev/sda3, but it is often
+# more reliable to use filesystem labels or UUIDs. See your filesystem
+# documentation for details on setting a label. To obtain the UUID, use
+# the blkid(8) command.
+
+#/dev/cdrom /mnt/cdrom auto noauto,ro 0 0
+
+
+UUID=d60b1460-d5e9-4b7d-83af-b6e4ef97313d /boot ext2 defaults,noatime 1 2
+UUID=7631c79d-9928-4fa7-aebf-e44e14eedc9b / xfs defaults 0 1
+UUID=9550f227-965a-4082-829d-8323f88b663e /home/Paul/Data xfs defaults 0 2
+tmpfs /tmp tmpfs rw,nosuid,noatime,nodev,size=8192M,mode=1777, 0 0
+tmpfs /var/tmp/portage tmpfs rw,nosuid,noatime,nodev,size=50%,uid=portage,gid=portage,mode=775 0 0
M etc/portage/package.accept_keywords/gentoo => etc/portage/package.accept_keywords/gentoo +2 -1
@@ 49,6 49,7 @@ media-video/makemkv::gentoo ~amd64
net-mail/isync::gentoo ~amd64
net-misc/dhcpcd::gentoo ~amd64
net-misc/proxychains::gentoo ~amd64
+net-news/sfeed::gentoo ~amd64
net-p2p/nicotine+::gentoo ~amd64
sys-apps/firejail::gentoo ~amd64
sys-apps/irqbalance::gentoo ~amd64
@@ 58,7 59,7 @@ sys-fs/archivemount::gentoo ~amd64
=sys-kernel/gentoo-sources-5.15*::gentoo ~amd64
=sys-kernel/linux-headers-5.15*::gentoo ~amd64
=dev-util/perf-5.15*::gentoo ~amd64
-=app-editors/emacs-28*::gentoo **
+app-editors/emacs::gentoo ~amd64
www-client/links::gentoo ~amd64
www-client/qutebrowser::gentoo ~amd64
dev-python/pypeg2::gentoo ~amd64
M etc/portage/package.accept_keywords/local => etc/portage/package.accept_keywords/local +1 -0
@@ 31,6 31,7 @@ sys-apps/busybox::local ~amd64
sys-fs/lvm2::local ~amd64
www-client/nyxt::local ~amd64
sys-libs/libfixposix::local ~amd64
+x11-misc/dunst::local ~amd64
x11-misc/lemonbar::local ~amd64
x11-terms/st::local ~amd64
x11-themes/bluecurve-gtk-themes::local ~amd64
M etc/portage/package.accept_keywords/vapoursynth => etc/portage/package.accept_keywords/vapoursynth +2 -4
@@ 2,8 2,6 @@ app-editors/vapoursynth-editor ~*
media-libs/l-smash ~*
media-libs/vapoursynth ~*
-# required by media-libs/vapoursynth-44-r1::vapoursynth
->=dev-python/cython-0.28.4 ~amd64
media-libs/waifu2x-converter-cpp ~*
@@ 109,6 107,6 @@ media-plugins/vapoursynth-wwxd ~*
media-plugins/vapoursynth-yadifmod ~*
media-plugins/vapoursynth-znedi3 ~*
media-video/d2vwitch ~*
-# media-video/mpv **
-# media-libs/libplacebo ~*
+media-video/mpv::vapoursynth **
+ media-libs/libplacebo **
media-video/wobbly ~*
M etc/portage/package.use/gentoo => etc/portage/package.use/gentoo +2 -2
@@ 29,7 29,7 @@ media-libs/opencv::gentoo -opengl
dev-python/PyQt5::gentoo dbus gui network widgets sql printsupport webengine webchannel declarative
dev-qt/qtwebengine::gentoo geolocation widgets -jumbo-build
sys-libs/zlib::gentoo minizip
- net-libs/nodejs::gentoo -npm
+ net-libs/nodejs::gentoo -npm -lto
dev-qt/qtwebchannel::gentoo qml
dev-libs/libxml2::gentoo icu
media-libs/libplacebo::gentoo glslang
@@ 96,10 96,10 @@ media-plugins/alsa-plugins::gentoo speex -ffmpeg
media-sound/shntool::gentoo mac
media-video/ffmpeg::gentoo alsa bluray dav1d fdk libaom libass mp3 openssl opus rubberband sdl vorbis vpx x264 x265 xcb zimg
media-video/makemkv::gentoo -java
-media-video/mpv::gentoo archive bluray luajit -egl -gbm -xv
media-video/x264-encoder::gentoo 10bit -interlaced
net-misc/curl::gentoo brotli
net-misc/youtube-dl::gentoo offensive
+net-news/sfeed::gentoo theme-newsboat -theme-mono
sci-visualization/gnuplot::gentoo cairo
sys-apps/firejail::gentoo suid
sys-apps/man-db::gentoo -nls
M etc/portage/package.use/local => etc/portage/package.use/local +1 -0
@@ 13,4 13,5 @@ net-news/snownews::local filters
sys-apps/busybox::local static -pam
net-p2p/transmission::local qt5
sys-fs/lvm2::local -thin
+x11-misc/dunst::local -xdg
x11-terms/st::local plumb scrollback=
\ No newline at end of file
M etc/portage/package.use/vapoursynth => etc/portage/package.use/vapoursynth +1 -0
@@ 1,1 1,2 @@
media-libs/waifu2x-converter-cpp::vapoursynth models
+media-video/mpv::vapoursynth archive bluray luajit vapoursynth -egl -gbm -xv
D etc/portage/patches/app-arch/pax/pax-glob-escape-fix.patch => etc/portage/patches/app-arch/pax/pax-glob-escape-fix.patch +0 -10
@@ 1,10 0,0 @@
---- a/pat_rep.c
-+++ b/pat_rep.c
-@@ -548,6 +548,7 @@
- return (-1);
- break;
- case '\\':
-+ c = *pattern++;
- default:
- if (c != *string++)
- return (-1);
D etc/portage/patches/media-gfx/pngcrush/pngcrush-fix-force-option-default.patch => etc/portage/patches/media-gfx/pngcrush/pngcrush-fix-force-option-default.patch +0 -20
@@ 1,20 0,0 @@
---- pngcrush-1.8.13-nolib/pngcrush.c 2017-08-22 00:28:52.000000000 +0200
-+++ pngcrush-1.8.13-nolib-patch/pngcrush.c 2017-11-01 13:16:01.694871189 +0100
-@@ -2241,7 +2241,7 @@
- static int bail = 0; /* if 0, bail out of trials early */
- static int check_crc = 0; /* if 0, skip CRC and ADLER32 checks */
- /* otherwise check both */
--static int force = 1; /* if 1, force output even if IDAT is larger */
-+static int force = 0; /* if 1, force output even if IDAT is larger */
- static unsigned int benchmark_iterations = 0;
-
-
-@@ -3782,7 +3782,7 @@
- if (!strncmp(argv[i], "-bail", 5))
- bail=0;
-
-- if (!strncmp(argv[i], "-bench", 6))
-+ else if (!strncmp(argv[i], "-bench", 6))
- {
- names++;
- BUMP_I;
A etc/portage/patches/net-news/sfeed-1.4/sfeed-curses.patch => etc/portage/patches/net-news/sfeed-1.4/sfeed-curses.patch +65 -0
@@ 0,0 1,65 @@
+diff --git a/sfeed_curses.c b/sfeed_curses.c
+index d09f8a0..a761f6b 100644
+--- a/sfeed_curses.c
++++ b/sfeed_curses.c
+@@ -1122,7 +1122,7 @@ linetoitem(char *line, struct item *item)
+ parseline(line, fields);
+ memcpy(item->fields, fields, sizeof(fields));
+ if (urlfile)
+- item->matchnew = estrdup(fields[fields[FieldLink][0] ? FieldLink : FieldId]);
++ item->matchnew = estrdup(fields[fields[FieldId][0] ? FieldId : FieldLink]);
+ else
+ item->matchnew = NULL;
+
+@@ -1262,7 +1262,7 @@ feed_count(struct feed *f, FILE *fp)
+ parseline(line, fields);
+
+ if (urlfile) {
+- f->totalnew += urls_isnew(fields[fields[FieldLink][0] ? FieldLink : FieldId]);
++ f->totalnew += urls_isnew(fields[fields[FieldId][0] ? FieldId : FieldLink]);
+ } else {
+ parsedtime = 0;
+ if (!strtotime(fields[FieldUnixTimestamp], &parsedtime))
+@@ -2245,6 +2245,34 @@ nextpage:
+ }
+ }
+ break;
++ case 'z':
++ if (selpane != PaneFeeds || !panes[selpane].nrows)
++ break;
++ p = &panes[selpane];
++#define INCR_MOD(var) (var + 1) % p->nrows
++ for (pos = INCR_MOD(p->pos); pos != p->pos; pos = INCR_MOD(pos)) {
++#undef INCR_MOD
++ if (pane_row_get(p, pos)->bold) {
++ pane_setpos(p, pos);
++ goto loadfeed;
++ break;
++ }
++ }
++ break;
++ case 'Z':
++ if (selpane != PaneFeeds || !panes[selpane].nrows)
++ break;
++ p = &panes[selpane];
++#define DECR_MOD(var) (var + p->nrows - 1) % p->nrows
++ for (pos = DECR_MOD(p->pos); pos != p->pos; pos = DECR_MOD(pos)) {
++#undef DECR_MOD
++ if (pane_row_get(p, pos)->bold) {
++ pane_setpos(p, pos);
++ goto loadfeed;
++ break;
++ }
++ }
++ break;
+ case 12: /* ^L, redraw */
+ alldirty();
+ break;
+@@ -2286,6 +2314,7 @@ nextpage:
+ else
+ pane_setpos(p, 0);
+ break;
++loadfeed:
+ case 'o': /* feeds: load, items: plumb URL */
+ case '\n':
+ if (selpane == PaneFeeds && panes[selpane].nrows)
D etc/portage/patches/sys-block/io-scheduler-udev-rules-1/nvme.patch => etc/portage/patches/sys-block/io-scheduler-udev-rules-1/nvme.patch +0 -51
@@ 1,51 0,0 @@
-diff --git a/etc/default/io-scheduler b/etc/default/io-scheduler
-index 5335d17..44eb40f 100644
---- a/etc/default/io-scheduler
-+++ b/etc/default/io-scheduler
-@@ -9,3 +9,4 @@
-
- #HDD_SCHEDULER="bfq"
- #SSD_SCHEDULER="bfq"
-+#NVME_SCHEDULER="none"
-\ No newline at end of file
-diff --git a/udev/rules.d/60-io-scheduler.rules b/udev/rules.d/60-io-scheduler.rules
-index 5b2bae2..cbb5f04 100644
---- a/udev/rules.d/60-io-scheduler.rules
-+++ b/udev/rules.d/60-io-scheduler.rules
-@@ -5,6 +5,7 @@
-
- ACTION!="add", GOTO="scheduler_end"
- SUBSYSTEM!="block", GOTO="scheduler_end"
-+ENV{DEVTYPE}!="disk", GOTO="scheduler_end"
-
- # If `elevator` cmdline parameter is set, user forces a desired scheduler
- IMPORT{cmdline}="elevator"
-@@ -13,6 +14,7 @@ ENV{elevator}=="?*", GOTO="scheduler_customized"
- IMPORT{file}="/etc/default/io-scheduler"
- ENV{HDD_SCHEDULER}=="?*", GOTO="scheduler_customized"
- ENV{SSD_SCHEDULER}=="?*", GOTO="scheduler_customized"
-+ENV{NVME_SCHEDULER}=="?*", GOTO="scheduler_customized"
-
- # If user doesn't care, continue with our defaults inheritted from openSuSE
- # Determine if BLK-MQ is enabled
-@@ -28,15 +30,19 @@ ENV{.IS_MQ}!="1", ATTR{queue/rotational}!="0", ATTR{queue/scheduler}="cfq"
- # Non-MQ: deadline scheduler for SSD
- ENV{.IS_MQ}!="1", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="deadline"
-
-+# NVMe: none
-+KERNEL=="nvme[0-9]*n[0-9]*", ATTR{queue/scheduler}="none"
-+
- GOTO="scheduler_end"
-
- LABEL="scheduler_customized"
-
- # If `elevator` cmdline parameter is set, user forces a desired scheduler
- # for all disks
--ENV{elevator}=="?*", ENV{HDD_SCHEDULER}="$env{elevator}" , ENV{SSD_SCHEDULER}="$env{elevator}"
-+ENV{elevator}=="?*", ENV{HDD_SCHEDULER}="$env{elevator}" , ENV{SSD_SCHEDULER}="$env{elevator}", ENV{NVME_SCHEDULER}="$env{elevator}"
-
- ATTR{queue/rotational}!="0", ATTR{queue/scheduler}="$env{HDD_SCHEDULER}"
- ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="$env{SSD_SCHEDULER}"
-+KERNEL=="nvme[0-9]*n[0-9]*", ATTR{queue/scheduler}="$env{NVME_SCHEDULER}"
-
- LABEL="scheduler_end"
D etc/portage/patches/x11-terms/st-0.8.1/st-0.8.1-remove-font-slant-weight-warnings.patch => etc/portage/patches/x11-terms/st-0.8.1/st-0.8.1-remove-font-slant-weight-warnings.patch +0 -22
@@ 1,22 0,0 @@
-diff --git a/x.c b/x.c
-index 7776825..a20db7d 100644
---- a/x.c
-+++ b/x.c
-@@ -889,7 +889,7 @@ xloadfont(Font *f, FcPattern *pattern)
- if ((XftPatternGetInteger(f->match->pattern, "slant", 0,
- &haveattr) != XftResultMatch) || haveattr < wantattr) {
- f->badslant = 1;
-- fputs("st: font slant does not match\n", stderr);
-+ //fputs("st: font slant does not match\n", stderr);
- }
- }
-
-@@ -898,7 +898,7 @@ xloadfont(Font *f, FcPattern *pattern)
- if ((XftPatternGetInteger(f->match->pattern, "weight", 0,
- &haveattr) != XftResultMatch) || haveattr != wantattr) {
- f->badweight = 1;
-- fputs("st: font weight does not match\n", stderr);
-+ //fputs("st: font weight does not match\n", stderr);
- }
- }
-
M etc/portage/repos.conf/eselect-repo.conf => etc/portage/repos.conf/eselect-repo.conf +5 -0
@@ 4,3 4,8 @@
location = /var/db/repos/vapoursynth
sync-type = git
sync-uri = https://github.com/gentoo-mirror/vapoursynth.git
+
+[retroarch]
+location = /var/db/repos/retroarch
+sync-type = git
+sync-uri = https://gitlab.com/jason.oliveira/retroarch.git
A etc/portage/savedconfig/net-news/sfeed-1.4/themes/mono.h => etc/portage/savedconfig/net-news/sfeed-1.4/themes/mono.h +13 -0
@@ 0,0 1,13 @@
+/* default mono theme */
+#define THEME_ITEM_NORMAL() do { } while(0)
+#define THEME_ITEM_FOCUS() do { } while(0)
+#define THEME_ITEM_BOLD() do { attrmode(ATTR_BOLD_ON); } while(0)
+#define THEME_ITEM_SELECTED() do { if (p->focused) attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_SCROLLBAR_FOCUS() do { } while(0)
+#define THEME_SCROLLBAR_NORMAL() do { attrmode(ATTR_FAINT_ON); } while(0)
+#define THEME_SCROLLBAR_TICK_FOCUS() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_SCROLLBAR_TICK_NORMAL() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_LINEBAR() do { attrmode(ATTR_FAINT_ON); } while(0)
+#define THEME_STATUSBAR() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_INPUT_LABEL() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_INPUT_NORMAL() do { } while(0)
A etc/portage/savedconfig/net-news/sfeed-1.4/themes/mono_highlight.h => etc/portage/savedconfig/net-news/sfeed-1.4/themes/mono_highlight.h +15 -0
@@ 0,0 1,15 @@
+/* mono theme with highlighting of the active panel.
+ The faint attribute may not work on all terminals though.
+ The combination bold with faint generally does not work either. */
+#define THEME_ITEM_NORMAL() do { } while(0)
+#define THEME_ITEM_FOCUS() do { } while(0)
+#define THEME_ITEM_BOLD() do { if (p->focused || !selected) attrmode(ATTR_BOLD_ON); } while(0)
+#define THEME_ITEM_SELECTED() do { attrmode(ATTR_REVERSE_ON); if (!p->focused) attrmode(ATTR_FAINT_ON); } while(0)
+#define THEME_SCROLLBAR_FOCUS() do { } while(0)
+#define THEME_SCROLLBAR_NORMAL() do { attrmode(ATTR_FAINT_ON); } while(0)
+#define THEME_SCROLLBAR_TICK_FOCUS() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_SCROLLBAR_TICK_NORMAL() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_LINEBAR() do { attrmode(ATTR_FAINT_ON); } while(0)
+#define THEME_STATUSBAR() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_INPUT_LABEL() do { attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_INPUT_NORMAL() do { } while(0)
A etc/portage/savedconfig/net-news/sfeed-1.4/themes/newsboat.h => etc/portage/savedconfig/net-news/sfeed-1.4/themes/newsboat.h +13 -0
@@ 0,0 1,13 @@
+/* newsboat-like (blue, yellow) */
+#define THEME_ITEM_NORMAL() do { } while(0)
+#define THEME_ITEM_FOCUS() do { } while(0)
+#define THEME_ITEM_BOLD() do { attrmode(ATTR_BOLD_ON); } while(0)
+#define THEME_ITEM_SELECTED() do { if (p->focused) ttywrite("\x1b[93;44m"); } while(0) /* bright yellow fg, blue bg */
+#define THEME_SCROLLBAR_FOCUS() do { ttywrite("\x1b[34m"); } while(0) /* blue fg */
+#define THEME_SCROLLBAR_NORMAL() do { ttywrite("\x1b[34m"); } while(0)
+#define THEME_SCROLLBAR_TICK_FOCUS() do { ttywrite("\x1b[44m"); } while(0) /* blue bg */
+#define THEME_SCROLLBAR_TICK_NORMAL() do { ttywrite("\x1b[44m"); } while(0)
+#define THEME_LINEBAR() do { ttywrite("\x1b[34m"); } while(0)
+#define THEME_STATUSBAR() do { attrmode(ATTR_BOLD_ON); ttywrite("\x1b[93;44m"); } while(0)
+#define THEME_INPUT_LABEL() do { } while(0)
+#define THEME_INPUT_NORMAL() do { } while(0)
A etc/portage/savedconfig/net-news/sfeed-1.4/themes/templeos.h => etc/portage/savedconfig/net-news/sfeed-1.4/themes/templeos.h +24 -0
@@ 0,0 1,24 @@
+/* TempleOS-like (for fun and god) */
+/* set true-color foreground / background, Terry would've preferred ANSI */
+#define SETFGCOLOR(r,g,b) ttywritef("\x1b[38;2;%d;%d;%dm", r, g, b)
+#define SETBGCOLOR(r,g,b) ttywritef("\x1b[48;2;%d;%d;%dm", r, g, b)
+
+#define THEME_ITEM_NORMAL() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_ITEM_FOCUS() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_ITEM_BOLD() do { attrmode(ATTR_BOLD_ON); SETFGCOLOR(0xaa, 0x00, 0x00); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_ITEM_SELECTED() do { if (p->focused) attrmode(ATTR_REVERSE_ON); } while(0)
+#define THEME_SCROLLBAR_FOCUS() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_SCROLLBAR_NORMAL() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_SCROLLBAR_TICK_FOCUS() do { SETBGCOLOR(0x00, 0x00, 0xaa); SETFGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_SCROLLBAR_TICK_NORMAL() do { SETBGCOLOR(0x00, 0x00, 0xaa); SETFGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_LINEBAR() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_STATUSBAR() do { ttywrite("\x1b[6m"); SETBGCOLOR(0x00, 0x00, 0xaa); SETFGCOLOR(0xff, 0xff, 0xff); } while(0) /* blink statusbar */
+#define THEME_INPUT_LABEL() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+#define THEME_INPUT_NORMAL() do { SETFGCOLOR(0x00, 0x00, 0xaa); SETBGCOLOR(0xff, 0xff, 0xff); } while(0)
+
+#undef SCROLLBAR_SYMBOL_BAR
+#define SCROLLBAR_SYMBOL_BAR "\xe2\x95\x91" /* symbol: "double vertical" */
+#undef LINEBAR_SYMBOL_BAR
+#define LINEBAR_SYMBOL_BAR "\xe2\x95\x90" /* symbol: "double horizontal" */
+#undef LINEBAR_SYMBOL_RIGHT
+#define LINEBAR_SYMBOL_RIGHT "\xe2\x95\xa3" /* symbol: "double vertical and left" */
D etc/portage/savedconfig/sys-kernel/linux-firmware-20211216 => etc/portage/savedconfig/sys-kernel/linux-firmware-20211216 +0 -58
@@ 1,58 0,0 @@
-# Remove files that shall not be installed from this list.
-amd-ucode/microcode_amd_fam17h.bin
-amdgpu/polaris10_vce.bin
-amdgpu/polaris10_uvd.bin
-amdgpu/polaris10_smc_sk.bin
-amdgpu/polaris10_k2_smc.bin
-amdgpu/polaris10_k_smc.bin
-amdgpu/polaris10_smc.bin
-amdgpu/polaris10_sdma.bin
-amdgpu/polaris10_sdma1.bin
-amdgpu/polaris10_rlc.bin
-amdgpu/polaris10_pfp_2.bin
-amdgpu/polaris10_pfp.bin
-amdgpu/polaris10_mec_2.bin
-amdgpu/polaris10_mec.bin
-amdgpu/polaris10_mec2_2.bin
-amdgpu/polaris10_mec2.bin
-amdgpu/polaris10_me_2.bin
-amdgpu/polaris10_me.bin
-amdgpu/polaris10_k_mc.bin
-amdgpu/polaris10_mc.bin
-amdgpu/polaris10_ce_2.bin
-amdgpu/polaris10_ce.bin
-rtlwifi/rtl8723bs_wowlan.bin
-rtlwifi/rtl8723bs_ap_wowlan.bin
-rtlwifi/rtl8723bs_nic.bin
-rtlwifi/rtl8192eefw.bin
-rtlwifi/rtl8192eu_ap_wowlan.bin
-rtlwifi/rtl8192eu_wowlan.bin
-rtlwifi/rtl8192eu_nic.bin
-rtlwifi/rtl8723bu_ap_wowlan.bin
-rtlwifi/rtl8723bu_wowlan.bin
-rtlwifi/rtl8723bu_nic.bin
-rtlwifi/rtl8723bs_bt.bin
-rtlwifi/rtl8822befw.bin
-rtlwifi/rtl8821aefw_29.bin
-rtlwifi/rtl8821aefw_wowlan.bin
-rtlwifi/rtl8821aefw.bin
-rtlwifi/rtl8188eufw.bin
-rtlwifi/rtl8188efw.bin
-rtlwifi/rtl8723aufw_B_NoBT.bin
-rtlwifi/rtl8723aufw_B.bin
-rtlwifi/rtl8723aufw_A.bin
-rtlwifi/rtl8723defw.bin
-rtlwifi/rtl8723befw_36.bin
-rtlwifi/rtl8723befw.bin
-rtlwifi/rtl8723fw_B.bin
-rtlwifi/rtl8723fw.bin
-rtlwifi/rtl8192defw.bin
-rtlwifi/rtl8192sefw.bin
-rtlwifi/rtl8192cufw_TMSC.bin
-rtlwifi/rtl8192cufw_B.bin
-rtlwifi/rtl8192cufw_A.bin
-rtlwifi/rtl8192cufw.bin
-rtlwifi/rtl8192cfwU_B.bin
-rtlwifi/rtl8192cfwU.bin
-rtlwifi/rtl8192cfw.bin
-rtlwifi/rtl8712u.bin
A etc/portage/savedconfig/sys-kernel/linux-firmware-20220310 => etc/portage/savedconfig/sys-kernel/linux-firmware-20220310 +2684 -0
@@ 0,0 1,2684 @@
+# Remove files that shall not be installed from this list.
+3com/typhoon.bin
+RTL8192E/main.img
+RTL8192E/data.img
+RTL8192E/boot.img
+TDA7706_OM_v2.5.1_boot.txt
+TDA7706_OM_v3.0.2_boot.txt
+a300_pfp.fw
+a300_pm4.fw
+advansys/38C1600.bin
+advansys/38C0800.bin
+advansys/3550.bin
+advansys/mcode.bin
+agere_ap_fw.bin
+agere_sta_fw.bin
+amd/amd_sev_fam19h_model0xh.sbin
+amd/amd_sev_fam17h_model3xh.sbin
+amd/amd_sev_fam17h_model0xh.sbin
+amd-ucode/microcode_amd_fam19h.bin
+amd-ucode/microcode_amd_fam17h.bin
+amd-ucode/microcode_amd_fam16h.bin
+amd-ucode/microcode_amd_fam15h.bin
+amd-ucode/microcode_amd.bin
+amdgpu/sdma_5_2_7.bin
+amdgpu/psp_13_0_8_toc.bin
+amdgpu/psp_13_0_8_ta.bin
+amdgpu/psp_13_0_8_asd.bin
+amdgpu/dcn_3_1_6_dmcub.bin
+amdgpu/gc_10_3_7_rlc.bin
+amdgpu/gc_10_3_7_pfp.bin
+amdgpu/gc_10_3_7_mec2.bin
+amdgpu/gc_10_3_7_mec.bin
+amdgpu/gc_10_3_7_me.bin
+amdgpu/gc_10_3_7_ce.bin
+amdgpu/aldebaran_vcn.bin
+amdgpu/aldebaran_ta.bin
+amdgpu/aldebaran_sos.bin
+amdgpu/aldebaran_smc.bin
+amdgpu/aldebaran_sdma.bin
+amdgpu/aldebaran_rlc.bin
+amdgpu/aldebaran_mec.bin
+amdgpu/aldebaran_mec2.bin
+amdgpu/cyan_skillfish2_sdma1.bin
+amdgpu/cyan_skillfish2_sdma.bin
+amdgpu/cyan_skillfish2_rlc.bin
+amdgpu/cyan_skillfish2_pfp.bin
+amdgpu/cyan_skillfish2_mec2.bin
+amdgpu/cyan_skillfish2_mec.bin
+amdgpu/cyan_skillfish2_me.bin
+amdgpu/cyan_skillfish2_ce.bin
+amdgpu/beige_goby_vcn.bin
+amdgpu/beige_goby_ta.bin
+amdgpu/beige_goby_sos.bin
+amdgpu/beige_goby_smc.bin
+amdgpu/beige_goby_sdma.bin
+amdgpu/beige_goby_rlc.bin
+amdgpu/beige_goby_pfp.bin
+amdgpu/beige_goby_mec2.bin
+amdgpu/beige_goby_mec.bin
+amdgpu/beige_goby_me.bin
+amdgpu/beige_goby_dmcub.bin
+amdgpu/beige_goby_ce.bin
+amdgpu/yellow_carp_vcn.bin
+amdgpu/yellow_carp_toc.bin
+amdgpu/yellow_carp_ta.bin
+amdgpu/yellow_carp_sdma.bin
+amdgpu/yellow_carp_rlc.bin
+amdgpu/yellow_carp_pfp.bin
+amdgpu/yellow_carp_mec2.bin
+amdgpu/yellow_carp_mec.bin
+amdgpu/yellow_carp_me.bin
+amdgpu/yellow_carp_dmcub.bin
+amdgpu/yellow_carp_ce.bin
+amdgpu/yellow_carp_asd.bin
+amdgpu/vangogh_vcn.bin
+amdgpu/vangogh_toc.bin
+amdgpu/vangogh_sdma.bin
+amdgpu/vangogh_rlc.bin
+amdgpu/vangogh_pfp.bin
+amdgpu/vangogh_mec.bin
+amdgpu/vangogh_mec2.bin
+amdgpu/vangogh_me.bin
+amdgpu/vangogh_dmcub.bin
+amdgpu/vangogh_ce.bin
+amdgpu/vangogh_asd.bin
+amdgpu/dimgrey_cavefish_vcn.bin
+amdgpu/dimgrey_cavefish_ta.bin
+amdgpu/dimgrey_cavefish_sos.bin
+amdgpu/dimgrey_cavefish_smc.bin
+amdgpu/dimgrey_cavefish_sdma.bin
+amdgpu/dimgrey_cavefish_rlc.bin
+amdgpu/dimgrey_cavefish_pfp.bin
+amdgpu/dimgrey_cavefish_mec2.bin
+amdgpu/dimgrey_cavefish_mec.bin
+amdgpu/dimgrey_cavefish_me.bin
+amdgpu/dimgrey_cavefish_dmcub.bin
+amdgpu/dimgrey_cavefish_ce.bin
+amdgpu/arcturus_vcn.bin
+amdgpu/arcturus_ta.bin
+amdgpu/arcturus_sos.bin
+amdgpu/arcturus_smc.bin
+amdgpu/arcturus_sdma.bin
+amdgpu/arcturus_rlc.bin
+amdgpu/arcturus_mec.bin
+amdgpu/arcturus_mec2.bin
+amdgpu/arcturus_gpu_info.bin
+amdgpu/arcturus_asd.bin
+amdgpu/navy_flounder_vcn.bin
+amdgpu/navy_flounder_ta.bin
+amdgpu/navy_flounder_sos.bin
+amdgpu/navy_flounder_smc.bin
+amdgpu/navy_flounder_sdma.bin
+amdgpu/navy_flounder_rlc.bin
+amdgpu/navy_flounder_pfp.bin
+amdgpu/navy_flounder_mec2.bin
+amdgpu/navy_flounder_mec.bin
+amdgpu/navy_flounder_me.bin
+amdgpu/navy_flounder_dmcub.bin
+amdgpu/navy_flounder_ce.bin
+amdgpu/green_sardine_vcn.bin
+amdgpu/green_sardine_ta.bin
+amdgpu/green_sardine_sdma.bin
+amdgpu/green_sardine_rlc.bin
+amdgpu/green_sardine_pfp.bin
+amdgpu/green_sardine_mec.bin
+amdgpu/green_sardine_mec2.bin
+amdgpu/green_sardine_me.bin
+amdgpu/green_sardine_dmcub.bin
+amdgpu/green_sardine_ce.bin
+amdgpu/green_sardine_asd.bin
+amdgpu/sienna_cichlid_vcn.bin
+amdgpu/sienna_cichlid_ta.bin
+amdgpu/sienna_cichlid_sos.bin
+amdgpu/sienna_cichlid_smc.bin
+amdgpu/sienna_cichlid_sdma.bin
+amdgpu/sienna_cichlid_rlc.bin
+amdgpu/sienna_cichlid_pfp.bin
+amdgpu/sienna_cichlid_mec2.bin
+amdgpu/sienna_cichlid_mec.bin
+amdgpu/sienna_cichlid_me.bin
+amdgpu/sienna_cichlid_dmcub.bin
+amdgpu/sienna_cichlid_ce.bin
+amdgpu/renoir_ta.bin
+amdgpu/renoir_dmcub.bin
+amdgpu/renoir_vcn.bin
+amdgpu/renoir_sdma.bin
+amdgpu/renoir_rlc.bin
+amdgpu/renoir_pfp.bin
+amdgpu/renoir_mec2.bin
+amdgpu/renoir_mec.bin
+amdgpu/renoir_me.bin
+amdgpu/renoir_gpu_info.bin
+amdgpu/renoir_ce.bin
+amdgpu/renoir_asd.bin
+amdgpu/navi12_ta.bin
+amdgpu/navi12_vcn.bin
+amdgpu/navi12_sos.bin
+amdgpu/navi12_smc.bin
+amdgpu/navi12_sdma1.bin
+amdgpu/navi12_sdma.bin
+amdgpu/navi12_rlc.bin
+amdgpu/navi12_pfp.bin
+amdgpu/navi12_mec2.bin
+amdgpu/navi12_mec.bin
+amdgpu/navi12_me.bin
+amdgpu/navi12_gpu_info.bin
+amdgpu/navi12_dmcu.bin
+amdgpu/navi12_ce.bin
+amdgpu/navi12_asd.bin
+amdgpu/navi14_ta.bin
+amdgpu/navi14_vcn.bin
+amdgpu/navi14_sos.bin
+amdgpu/navi14_smc.bin
+amdgpu/navi14_sdma1.bin
+amdgpu/navi14_sdma.bin
+amdgpu/navi14_rlc.bin
+amdgpu/navi14_pfp_wks.bin
+amdgpu/navi14_pfp.bin
+amdgpu/navi14_mec2_wks.bin
+amdgpu/navi14_mec2.bin
+amdgpu/navi14_mec_wks.bin
+amdgpu/navi14_mec.bin
+amdgpu/navi14_me_wks.bin
+amdgpu/navi14_me.bin
+amdgpu/navi14_gpu_info.bin
+amdgpu/navi14_ce_wks.bin
+amdgpu/navi14_ce.bin
+amdgpu/navi14_asd.bin
+amdgpu/navi10_ta.bin
+amdgpu/navi10_vcn.bin
+amdgpu/navi10_sos.bin
+amdgpu/navi10_smc.bin
+amdgpu/navi10_sdma1.bin
+amdgpu/navi10_sdma.bin
+amdgpu/navi10_rlc.bin
+amdgpu/navi10_pfp.bin
+amdgpu/navi10_mec2.bin
+amdgpu/navi10_mec.bin
+amdgpu/navi10_me.bin
+amdgpu/navi10_gpu_info.bin
+amdgpu/navi10_ce.bin
+amdgpu/navi10_asd.bin
+amdgpu/raven2_ta.bin
+amdgpu/raven2_vcn.bin
+amdgpu/raven2_sdma.bin
+amdgpu/raven2_rlc.bin
+amdgpu/raven2_pfp.bin
+amdgpu/raven2_mec2.bin
+amdgpu/raven2_mec.bin
+amdgpu/raven2_me.bin
+amdgpu/raven2_gpu_info.bin
+amdgpu/raven2_ce.bin
+amdgpu/raven2_asd.bin
+amdgpu/picasso_ta.bin
+amdgpu/picasso_vcn.bin
+amdgpu/picasso_sdma.bin
+amdgpu/picasso_rlc_am4.bin
+amdgpu/picasso_rlc.bin
+amdgpu/picasso_pfp.bin
+amdgpu/picasso_mec2.bin
+amdgpu/picasso_mec.bin
+amdgpu/picasso_me.bin
+amdgpu/picasso_gpu_info.bin
+amdgpu/picasso_ce.bin
+amdgpu/picasso_asd.bin
+amdgpu/raven_ta.bin
+amdgpu/raven_kicker_rlc.bin
+amdgpu/raven_dmcu.bin
+amdgpu/raven_vcn.bin
+amdgpu/raven_sdma.bin
+amdgpu/raven_rlc.bin
+amdgpu/raven_pfp.bin
+amdgpu/raven_mec2.bin
+amdgpu/raven_mec.bin
+amdgpu/raven_me.bin
+amdgpu/raven_gpu_info.bin
+amdgpu/raven_ce.bin
+amdgpu/raven_asd.bin
+amdgpu/vega20_ta.bin
+amdgpu/vega20_vce.bin
+amdgpu/vega20_uvd.bin
+amdgpu/vega20_sos.bin
+amdgpu/vega20_smc.bin
+amdgpu/vega20_sdma1.bin
+amdgpu/vega20_sdma.bin
+amdgpu/vega20_rlc.bin
+amdgpu/vega20_pfp.bin
+amdgpu/vega20_mec2.bin
+amdgpu/vega20_mec.bin
+amdgpu/vega20_me.bin
+amdgpu/vega20_ce.bin
+amdgpu/vega20_asd.bin
+amdgpu/vega12_vce.bin
+amdgpu/vega12_uvd.bin
+amdgpu/vega12_sos.bin
+amdgpu/vega12_smc.bin
+amdgpu/vega12_sdma1.bin
+amdgpu/vega12_sdma.bin
+amdgpu/vega12_rlc.bin
+amdgpu/vega12_pfp.bin
+amdgpu/vega12_mec2.bin
+amdgpu/vega12_mec.bin
+amdgpu/vega12_me.bin
+amdgpu/vega12_gpu_info.bin
+amdgpu/vega12_ce.bin
+amdgpu/vega12_asd.bin
+amdgpu/vega10_vce.bin
+amdgpu/vega10_uvd.bin
+amdgpu/vega10_sos.bin
+amdgpu/vega10_smc.bin
+amdgpu/vega10_sdma1.bin
+amdgpu/vega10_sdma.bin
+amdgpu/vega10_rlc.bin
+amdgpu/vega10_pfp.bin
+amdgpu/vega10_mec2.bin
+amdgpu/vega10_mec.bin
+amdgpu/vega10_me.bin
+amdgpu/vega10_gpu_info.bin
+amdgpu/vega10_ce.bin
+amdgpu/vega10_asd.bin
+amdgpu/vega10_acg_smc.bin
+amdgpu/vegam_vce.bin
+amdgpu/vegam_uvd.bin
+amdgpu/vegam_smc.bin
+amdgpu/vegam_sdma1.bin
+amdgpu/vegam_sdma.bin
+amdgpu/vegam_rlc.bin
+amdgpu/vegam_pfp.bin
+amdgpu/vegam_mec2.bin
+amdgpu/vegam_mec.bin
+amdgpu/vegam_me.bin
+amdgpu/vegam_ce.bin
+amdgpu/polaris12_vce.bin
+amdgpu/polaris12_uvd.bin
+amdgpu/polaris12_k_smc.bin
+amdgpu/polaris12_smc.bin
+amdgpu/polaris12_sdma1.bin
+amdgpu/polaris12_sdma.bin
+amdgpu/polaris12_rlc.bin
+amdgpu/polaris12_pfp_2.bin
+amdgpu/polaris12_pfp.bin
+amdgpu/polaris12_mec2_2.bin
+amdgpu/polaris12_mec2.bin
+amdgpu/polaris12_mec_2.bin
+amdgpu/polaris12_mec.bin
+amdgpu/polaris12_me_2.bin
+amdgpu/polaris12_me.bin
+amdgpu/polaris12_32_mc.bin
+amdgpu/polaris12_k_mc.bin
+amdgpu/polaris12_mc.bin
+amdgpu/polaris12_ce_2.bin
+amdgpu/polaris12_ce.bin
+amdgpu/polaris11_vce.bin
+amdgpu/polaris11_uvd.bin
+amdgpu/polaris11_smc_sk.bin
+amdgpu/polaris11_k2_smc.bin
+amdgpu/polaris11_k_smc.bin
+amdgpu/polaris11_smc.bin
+amdgpu/polaris11_sdma.bin
+amdgpu/polaris11_sdma1.bin
+amdgpu/polaris11_rlc.bin
+amdgpu/polaris11_pfp_2.bin
+amdgpu/polaris11_pfp.bin
+amdgpu/polaris11_mec_2.bin
+amdgpu/polaris11_mec.bin
+amdgpu/polaris11_mec2_2.bin
+amdgpu/polaris11_mec2.bin
+amdgpu/polaris11_me_2.bin
+amdgpu/polaris11_me.bin
+amdgpu/polaris11_k_mc.bin
+amdgpu/polaris11_mc.bin
+amdgpu/polaris11_ce_2.bin
+amdgpu/polaris11_ce.bin
+amdgpu/polaris10_vce.bin
+amdgpu/polaris10_uvd.bin
+amdgpu/polaris10_smc_sk.bin
+amdgpu/polaris10_k2_smc.bin
+amdgpu/polaris10_k_smc.bin
+amdgpu/polaris10_smc.bin
+amdgpu/polaris10_sdma.bin
+amdgpu/polaris10_sdma1.bin
+amdgpu/polaris10_rlc.bin
+amdgpu/polaris10_pfp_2.bin
+amdgpu/polaris10_pfp.bin
+amdgpu/polaris10_mec_2.bin
+amdgpu/polaris10_mec.bin
+amdgpu/polaris10_mec2_2.bin
+amdgpu/polaris10_mec2.bin
+amdgpu/polaris10_me_2.bin
+amdgpu/polaris10_me.bin
+amdgpu/polaris10_k_mc.bin
+amdgpu/polaris10_mc.bin
+amdgpu/polaris10_ce_2.bin
+amdgpu/polaris10_ce.bin
+amdgpu/stoney_vce.bin
+amdgpu/stoney_uvd.bin
+amdgpu/stoney_sdma.bin
+amdgpu/stoney_rlc.bin
+amdgpu/stoney_pfp.bin
+amdgpu/stoney_mec.bin
+amdgpu/stoney_me.bin
+amdgpu/stoney_ce.bin
+amdgpu/fiji_vce.bin
+amdgpu/fiji_uvd.bin
+amdgpu/fiji_smc.bin
+amdgpu/fiji_sdma.bin
+amdgpu/fiji_sdma1.bin
+amdgpu/fiji_rlc.bin
+amdgpu/fiji_pfp.bin
+amdgpu/fiji_mec.bin
+amdgpu/fiji_mec2.bin
+amdgpu/fiji_me.bin
+amdgpu/fiji_mc.bin
+amdgpu/fiji_ce.bin
+amdgpu/carrizo_vce.bin
+amdgpu/carrizo_uvd.bin
+amdgpu/carrizo_sdma.bin
+amdgpu/carrizo_sdma1.bin
+amdgpu/carrizo_rlc.bin
+amdgpu/carrizo_pfp.bin
+amdgpu/carrizo_mec.bin
+amdgpu/carrizo_mec2.bin
+amdgpu/carrizo_me.bin
+amdgpu/carrizo_ce.bin
+amdgpu/tonga_vce.bin
+amdgpu/tonga_uvd.bin
+amdgpu/tonga_smc.bin
+amdgpu/tonga_sdma.bin
+amdgpu/tonga_sdma1.bin
+amdgpu/tonga_rlc.bin
+amdgpu/tonga_pfp.bin
+amdgpu/tonga_mec.bin
+amdgpu/tonga_mec2.bin
+amdgpu/tonga_me.bin
+amdgpu/tonga_mc.bin
+amdgpu/tonga_k_smc.bin
+amdgpu/tonga_ce.bin
+amdgpu/topaz_smc.bin
+amdgpu/topaz_sdma.bin
+amdgpu/topaz_sdma1.bin
+amdgpu/topaz_rlc.bin
+amdgpu/topaz_pfp.bin
+amdgpu/topaz_mec.bin
+amdgpu/topaz_mec2.bin
+amdgpu/topaz_me.bin
+amdgpu/topaz_mc.bin
+amdgpu/topaz_k_smc.bin
+amdgpu/topaz_ce.bin
+amdgpu/kaveri_vce.bin
+amdgpu/kaveri_uvd.bin
+amdgpu/kaveri_sdma1.bin
+amdgpu/kaveri_sdma.bin
+amdgpu/kaveri_rlc.bin
+amdgpu/kaveri_pfp.bin
+amdgpu/kaveri_mec2.bin
+amdgpu/kaveri_mec.bin
+amdgpu/kaveri_me.bin
+amdgpu/kaveri_ce.bin
+amdgpu/mullins_vce.bin
+amdgpu/mullins_uvd.bin
+amdgpu/mullins_sdma1.bin
+amdgpu/mullins_sdma.bin
+amdgpu/mullins_rlc.bin
+amdgpu/mullins_pfp.bin
+amdgpu/mullins_mec.bin
+amdgpu/mullins_me.bin
+amdgpu/mullins_ce.bin
+amdgpu/kabini_vce.bin
+amdgpu/kabini_uvd.bin
+amdgpu/kabini_sdma1.bin
+amdgpu/kabini_sdma.bin
+amdgpu/kabini_rlc.bin
+amdgpu/kabini_pfp.bin
+amdgpu/kabini_mec.bin
+amdgpu/kabini_me.bin
+amdgpu/kabini_ce.bin
+amdgpu/hawaii_vce.bin
+amdgpu/hawaii_uvd.bin
+amdgpu/hawaii_smc.bin
+amdgpu/hawaii_sdma1.bin
+amdgpu/hawaii_sdma.bin
+amdgpu/hawaii_rlc.bin
+amdgpu/hawaii_pfp.bin
+amdgpu/hawaii_mec.bin
+amdgpu/hawaii_me.bin
+amdgpu/hawaii_mc.bin
+amdgpu/hawaii_k_smc.bin
+amdgpu/hawaii_ce.bin
+amdgpu/bonaire_vce.bin
+amdgpu/bonaire_uvd.bin
+amdgpu/bonaire_smc.bin
+amdgpu/bonaire_sdma1.bin
+amdgpu/bonaire_sdma.bin
+amdgpu/bonaire_rlc.bin
+amdgpu/bonaire_pfp.bin
+amdgpu/bonaire_mec.bin
+amdgpu/bonaire_me.bin
+amdgpu/bonaire_mc.bin
+amdgpu/bonaire_k_smc.bin
+amdgpu/bonaire_ce.bin
+amdgpu/banks_k_2_smc.bin
+amdgpu/si58_mc.bin
+amdgpu/oland_uvd.bin
+amdgpu/oland_smc.bin
+amdgpu/oland_rlc.bin
+amdgpu/oland_pfp.bin
+amdgpu/oland_me.bin
+amdgpu/oland_mc.bin
+amdgpu/oland_k_smc.bin
+amdgpu/oland_ce.bin
+amdgpu/hainan_smc.bin
+amdgpu/hainan_rlc.bin
+amdgpu/hainan_pfp.bin
+amdgpu/hainan_me.bin
+amdgpu/hainan_mc.bin
+amdgpu/hainan_k_smc.bin
+amdgpu/hainan_ce.bin
+amdgpu/verde_uvd.bin
+amdgpu/verde_smc.bin
+amdgpu/verde_rlc.bin
+amdgpu/verde_pfp.bin
+amdgpu/verde_me.bin
+amdgpu/verde_mc.bin
+amdgpu/verde_k_smc.bin
+amdgpu/verde_ce.bin
+amdgpu/pitcairn_uvd.bin
+amdgpu/pitcairn_smc.bin
+amdgpu/pitcairn_rlc.bin
+amdgpu/pitcairn_pfp.bin
+amdgpu/pitcairn_me.bin
+amdgpu/pitcairn_mc.bin
+amdgpu/pitcairn_k_smc.bin
+amdgpu/pitcairn_ce.bin
+amdgpu/tahiti_uvd.bin
+amdgpu/tahiti_smc.bin
+amdgpu/tahiti_rlc.bin
+amdgpu/tahiti_pfp.bin
+amdgpu/tahiti_me.bin
+amdgpu/tahiti_mc.bin
+amdgpu/tahiti_k_smc.bin
+amdgpu/tahiti_ce.bin
+amphion/vpu/vpu_fw_imx8_enc.bin
+amphion/vpu/vpu_fw_imx8_dec.bin
+ar3k/30101coex/RamPatch.txt
+ar3k/30101coex/PS_ASIC.pst
+ar3k/30101coex/PS_ASIC_aclHighPri.pst
+ar3k/30101coex/PS_ASIC_aclLowPri.pst
+ar3k/30101coex/ar3kbdaddr.pst
+ar3k/30000/RamPatch.txt
+ar3k/30000/PS_ASIC.pst
+ar3k/30000/ar3kbdaddr.pst
+ar3k/30101/RamPatch.txt
+ar3k/30101/PS_ASIC.pst
+ar3k/30101/ar3kbdaddr.pst
+ar3k/1020200/RamPatch.txt
+ar3k/1020200/PS_ASIC.pst
+ar3k/1020200/ar3kbdaddr.pst
+ar3k/1020201/RamPatch.txt
+ar3k/1020201/PS_ASIC.pst
+ar3k/1020201coex/ramps_0x01020201_26_HighPriority.dfu
+ar3k/AthrBT_0x01020201.dfu
+ar3k/ramps_0x31010100_40.dfu
+ar3k/AthrBT_0x31010100.dfu
+ar3k/ramps_0x11020100_40.dfu
+ar3k/AthrBT_0x11020100.dfu
+ar3k/ramps_0x41020000_40.dfu
+ar3k/AthrBT_0x41020000.dfu
+ar3k/ramps_0x01020201_40.dfu
+ar3k/ramps_0x01020201_26.dfu
+ar3k/ramps_0x11020000_40.dfu
+ar3k/AthrBT_0x11020000.dfu
+ar3k/ramps_0x31010000_40.dfu
+ar3k/AthrBT_0x31010000.dfu
+ar3k/ramps_0x01020200_40.dfu
+ar3k/ramps_0x01020200_26.dfu
+ar3k/AthrBT_0x01020200.dfu
+ar3k/ramps_0x01020001_26.dfu
+ar3k/AthrBT_0x01020001.dfu
+ar5523.bin
+ar7010.fw
+ar7010_1_1.fw
+ar9170-1.fw
+ar9170-2.fw
+ar9271.fw
+as102_data1_st.hex
+as102_data2_st.hex
+ath10k/WCN3990/hw1.0/notice.txt_wlanmdsp
+ath10k/WCN3990/hw1.0/wlanmdsp.mbn
+ath10k/WCN3990/hw1.0/firmware-5.bin
+ath10k/QCA9984/hw1.0/notice_ath10k_firmware-5.txt
+ath10k/QCA9984/hw1.0/firmware-5.bin
+ath10k/QCA9984/hw1.0/board-2.bin
+ath10k/QCA9888/hw2.0/notice_ath10k_firmware-5.txt
+ath10k/QCA9888/hw2.0/firmware-5.bin
+ath10k/QCA9888/hw2.0/board-2.bin
+ath10k/QCA9887/hw1.0/notice_ath10k_firmware-5.txt
+ath10k/QCA9887/hw1.0/firmware-5.bin
+ath10k/QCA9887/hw1.0/board.bin
+ath10k/QCA4019/hw1.0/notice_ath10k_firmware-5.txt
+ath10k/QCA4019/hw1.0/firmware-5.bin
+ath10k/QCA4019/hw1.0/board-2.bin
+ath10k/QCA99X0/hw2.0/notice_ath10k_firmware-5.txt
+ath10k/QCA99X0/hw2.0/firmware-5.bin
+ath10k/QCA99X0/hw2.0/board.bin
+ath10k/QCA9377/hw1.0/notice_ath10k_firmware-6.txt
+ath10k/QCA9377/hw1.0/firmware-6.bin
+ath10k/QCA9377/hw1.0/notice_ath10k_firmware-sdio-5.txt
+ath10k/QCA9377/hw1.0/firmware-sdio-5.bin
+ath10k/QCA9377/hw1.0/notice_ath10k_firmware-5.txt
+ath10k/QCA9377/hw1.0/firmware-5.bin
+ath10k/QCA9377/hw1.0/board-2.bin
+ath10k/QCA9377/hw1.0/board.bin
+ath10k/QCA6174/hw3.0/notice_ath10k_firmware-sdio-6.txt
+ath10k/QCA6174/hw3.0/firmware-sdio-6.bin
+ath10k/QCA6174/hw3.0/notice_ath10k_firmware-6.txt
+ath10k/QCA6174/hw3.0/firmware-6.bin
+ath10k/QCA6174/hw3.0/notice_ath10k_firmware-4.txt
+ath10k/QCA6174/hw3.0/firmware-4.bin
+ath10k/QCA6174/hw3.0/board-2.bin
+ath10k/QCA6174/hw3.0/board.bin
+ath10k/QCA6174/hw2.1/notice_ath10k_firmware-5.txt
+ath10k/QCA6174/hw2.1/firmware-5.bin
+ath10k/QCA6174/hw2.1/board-2.bin
+ath10k/QCA6174/hw2.1/board.bin
+ath10k/QCA988X/hw2.0/notice_ath10k_firmware-5.txt
+ath10k/QCA988X/hw2.0/firmware-5.bin
+ath10k/QCA988X/hw2.0/notice_ath10k_firmware-4.txt
+ath10k/QCA988X/hw2.0/firmware-4.bin
+ath10k/QCA988X/hw2.0/board.bin
+ath11k/WCN6855/hw2.1/m3.bin
+ath11k/WCN6855/hw2.1/amss.bin
+ath11k/WCN6855/hw2.1/regdb.bin
+ath11k/WCN6855/hw2.1/board-2.bin
+ath11k/WCN6855/hw2.0/Notice.txt
+ath11k/WCN6855/hw2.0/m3.bin
+ath11k/WCN6855/hw2.0/amss.bin
+ath11k/WCN6855/hw2.0/regdb.bin
+ath11k/WCN6855/hw2.0/board-2.bin
+ath11k/QCA6390/hw2.0/Notice.txt
+ath11k/QCA6390/hw2.0/m3.bin
+ath11k/QCA6390/hw2.0/amss.bin
+ath11k/QCA6390/hw2.0/board-2.bin
+ath11k/IPQ8074/hw2.0/Notice.txt
+ath11k/IPQ8074/hw2.0/q6_fw.mdt
+ath11k/IPQ8074/hw2.0/q6_fw.flist
+ath11k/IPQ8074/hw2.0/q6_fw.b08
+ath11k/IPQ8074/hw2.0/q6_fw.b07
+ath11k/IPQ8074/hw2.0/q6_fw.b05
+ath11k/IPQ8074/hw2.0/q6_fw.b04
+ath11k/IPQ8074/hw2.0/q6_fw.b03
+ath11k/IPQ8074/hw2.0/q6_fw.b02
+ath11k/IPQ8074/hw2.0/q6_fw.b01
+ath11k/IPQ8074/hw2.0/q6_fw.b00
+ath11k/IPQ8074/hw2.0/m3_fw.mdt
+ath11k/IPQ8074/hw2.0/m3_fw.flist
+ath11k/IPQ8074/hw2.0/m3_fw.b02
+ath11k/IPQ8074/hw2.0/m3_fw.b01
+ath11k/IPQ8074/hw2.0/m3_fw.b00
+ath11k/IPQ8074/hw2.0/board-2.bin
+ath11k/IPQ6018/hw1.0/Notice.txt
+ath11k/IPQ6018/hw1.0/q6_fw.mdt
+ath11k/IPQ6018/hw1.0/q6_fw.flist
+ath11k/IPQ6018/hw1.0/q6_fw.b08
+ath11k/IPQ6018/hw1.0/q6_fw.b07
+ath11k/IPQ6018/hw1.0/q6_fw.b05
+ath11k/IPQ6018/hw1.0/q6_fw.b04
+ath11k/IPQ6018/hw1.0/q6_fw.b03
+ath11k/IPQ6018/hw1.0/q6_fw.b02
+ath11k/IPQ6018/hw1.0/q6_fw.b01
+ath11k/IPQ6018/hw1.0/q6_fw.b00
+ath11k/IPQ6018/hw1.0/m3_fw.mdt
+ath11k/IPQ6018/hw1.0/m3_fw.flist
+ath11k/IPQ6018/hw1.0/m3_fw.b02
+ath11k/IPQ6018/hw1.0/m3_fw.b01
+ath11k/IPQ6018/hw1.0/m3_fw.b00
+ath11k/IPQ6018/hw1.0/board-2.bin
+ath3k-1.fw
+ath6k/AR6003.1/hw2.1.1/otp.bin
+ath6k/AR6003.1/hw2.1.1/endpointping.bin
+ath6k/AR6003.1/hw2.1.1/data.patch.bin
+ath6k/AR6003.1/hw2.1.1/bdata.WB31.bin
+ath6k/AR6003.1/hw2.1.1/bdata.SD32.bin
+ath6k/AR6003.1/hw2.1.1/bdata.SD31.bin
+ath6k/AR6003.1/hw2.1.1/athwlan.bin
+ath6k/AR6002/data.patch.hw2_0.bin
+ath6k/AR6002/athwlan.bin.z77
+ath6k/AR6002/eeprom.bin
+ath6k/AR6002/eeprom.data
+ath6k/AR6003/hw2.0/athwlan.bin.z77
+ath6k/AR6003/hw2.0/bdata.WB31.bin
+ath6k/AR6003/hw2.0/data.patch.bin
+ath6k/AR6003/hw2.0/bdata.SD32.bin
+ath6k/AR6003/hw2.0/bdata.SD31.bin
+ath6k/AR6003/hw2.0/otp.bin.z77
+ath6k/AR6003/hw2.1.1/bdata.WB31.bin
+ath6k/AR6003/hw2.1.1/data.patch.bin
+ath6k/AR6003/hw2.1.1/bdata.SD32.bin
+ath6k/AR6003/hw2.1.1/bdata.SD31.bin
+ath6k/AR6003/hw2.1.1/endpointping.bin
+ath6k/AR6003/hw2.1.1/athwlan.bin
+ath6k/AR6003/hw2.1.1/otp.bin
+ath6k/AR6003/hw2.1.1/fw-3.bin
+ath6k/AR6003/hw2.1.1/fw-2.bin
+ath6k/AR6003/hw1.0/athwlan.bin.z77
+ath6k/AR6003/hw1.0/bdata.WB31.bin
+ath6k/AR6003/hw1.0/data.patch.bin
+ath6k/AR6003/hw1.0/bdata.SD32.bin
+ath6k/AR6003/hw1.0/bdata.SD31.bin
+ath6k/AR6003/hw1.0/otp.bin.z77
+ath6k/AR6004/hw1.2/bdata.bin
+ath6k/AR6004/hw1.2/fw-2.bin
+ath6k/AR6004/hw1.3/bdata.bin
+ath6k/AR6004/hw1.3/fw-3.bin
+ath9k_htc/htc_9271-1.4.0.fw
+ath9k_htc/htc_7010-1.4.0.fw
+atmel/wilc1000_wifi_firmware-1.bin
+atmel/wilc1000_wifi_firmware.bin
+atmel/wilc1000_p2p_fw.bin
+atmel/wilc1000_ap_fw.bin
+atmel/wilc1000_fw.bin
+atusb/rzusb-0.3.bin
+atusb/atusb-0.3.dfu
+atusb/atusb-0.2.dfu
+av7110/bootcode.bin
+bnx2/bnx2-rv2p-09ax-6.0.17.fw
+bnx2/bnx2-rv2p-09ax-5.0.0.j10.fw
+bnx2/bnx2-rv2p-09ax-5.0.0.j3.fw
+bnx2/bnx2-rv2p-09-6.0.17.fw
+bnx2/bnx2-rv2p-09-5.0.0.j10.fw
+bnx2/bnx2-rv2p-09-5.0.0.j3.fw
+bnx2/bnx2-rv2p-09-4.6.15.fw
+bnx2/bnx2-rv2p-06-6.0.15.fw
+bnx2/bnx2-rv2p-06-5.0.0.j3.fw
+bnx2/bnx2-rv2p-06-4.6.16.fw
+bnx2/bnx2-mips-09-6.2.1b.fw
+bnx2/bnx2-mips-09-6.2.1a.fw
+bnx2/bnx2-mips-09-6.2.1.fw
+bnx2/bnx2-mips-09-6.0.17.fw
+bnx2/bnx2-mips-09-5.0.0.j15.fw
+bnx2/bnx2-mips-09-5.0.0.j9.fw
+bnx2/bnx2-mips-09-5.0.0.j3.fw
+bnx2/bnx2-mips-09-4.6.17.fw
+bnx2/bnx2-mips-06-6.2.3.fw
+bnx2/bnx2-mips-06-6.2.1.fw
+bnx2/bnx2-mips-06-6.0.15.fw
+bnx2/bnx2-mips-06-5.0.0.j6.fw
+bnx2/bnx2-mips-06-5.0.0.j3.fw
+bnx2/bnx2-mips-06-4.6.16.fw
+bnx2x/bnx2x-e2-7.13.21.0.fw
+bnx2x/bnx2x-e1h-7.13.21.0.fw
+bnx2x/bnx2x-e1-7.13.21.0.fw
+bnx2x/bnx2x-e2-7.13.15.0.fw
+bnx2x/bnx2x-e1h-7.13.15.0.fw
+bnx2x/bnx2x-e1-7.13.15.0.fw
+bnx2x/bnx2x-e2-7.13.11.0.fw
+bnx2x/bnx2x-e1h-7.13.11.0.fw
+bnx2x/bnx2x-e1-7.13.11.0.fw
+bnx2x/bnx2x-e2-7.13.1.0.fw
+bnx2x/bnx2x-e1h-7.13.1.0.fw
+bnx2x/bnx2x-e1-7.13.1.0.fw
+bnx2x/bnx2x-e2-7.12.30.0.fw
+bnx2x/bnx2x-e1h-7.12.30.0.fw
+bnx2x/bnx2x-e1-7.12.30.0.fw
+bnx2x/bnx2x-e2-7.10.51.0.fw
+bnx2x/bnx2x-e1h-7.10.51.0.fw
+bnx2x/bnx2x-e1-7.10.51.0.fw
+bnx2x/bnx2x-e2-7.8.19.0.fw
+bnx2x/bnx2x-e1h-7.8.19.0.fw
+bnx2x/bnx2x-e1-7.8.19.0.fw
+bnx2x/bnx2x-e2-7.8.17.0.fw
+bnx2x/bnx2x-e1h-7.8.17.0.fw
+bnx2x/bnx2x-e1-7.8.17.0.fw
+bnx2x/bnx2x-e2-7.8.2.0.fw
+bnx2x/bnx2x-e1h-7.8.2.0.fw
+bnx2x/bnx2x-e1-7.8.2.0.fw
+bnx2x/bnx2x-e1h-7.2.51.0.fw
+bnx2x/bnx2x-e1-7.2.51.0.fw
+bnx2x/bnx2x-e2-7.2.51.0.fw
+bnx2x/bnx2x-e1h-7.2.16.0.fw
+bnx2x/bnx2x-e1-7.2.16.0.fw
+bnx2x/bnx2x-e2-7.2.16.0.fw
+bnx2x/bnx2x-e1h-7.0.29.0.fw
+bnx2x/bnx2x-e1-7.0.29.0.fw
+bnx2x/bnx2x-e2-7.0.29.0.fw
+bnx2x/bnx2x-e1h-7.0.23.0.fw
+bnx2x/bnx2x-e1-7.0.23.0.fw
+bnx2x/bnx2x-e2-7.0.23.0.fw
+bnx2x/bnx2x-e1h-7.0.20.0.fw
+bnx2x/bnx2x-e1-7.0.20.0.fw
+bnx2x/bnx2x-e2-7.0.20.0.fw
+bnx2x/bnx2x-e2-6.2.9.0.fw
+bnx2x/bnx2x-e1h-6.2.9.0.fw
+bnx2x/bnx2x-e1-6.2.9.0.fw
+bnx2x/bnx2x-e2-6.2.5.0.fw
+bnx2x/bnx2x-e1h-6.2.5.0.fw
+bnx2x/bnx2x-e1-6.2.5.0.fw
+bnx2x/bnx2x-e2-6.0.34.0.fw
+bnx2x/bnx2x-e1h-6.0.34.0.fw
+bnx2x/bnx2x-e1-6.0.34.0.fw
+bnx2x-e1-4.8.53.0.fw
+bnx2x-e1-5.2.13.0.fw
+bnx2x-e1-5.2.7.0.fw
+bnx2x-e1h-4.8.53.0.fw
+bnx2x-e1h-5.2.13.0.fw
+bnx2x-e1h-5.2.7.0.fw
+brcm/brcmfmac4356-sdio.khadas,vim2.txt
+brcm/brcmfmac43455-sdio.Raspberry Pi Foundation-Raspberry Pi Compute Module 4.txt
+brcm/brcmfmac43455-sdio.Raspberry Pi Foundation-Raspberry Pi 4 Model B.txt
+brcm/brcmfmac43455-sdio.raspberrypi,3-model-a-plus.txt
+brcm/brcmfmac43430-sdio.raspberrypi,model-zero-w.txt
+brcm/brcmfmac43430-sdio.friendlyarm,nanopi-r1.txt
+brcm/brcmfmac43430-sdio.sinovoip,bpi-m3.txt
+brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-ultra.txt
+brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-zero.txt
+brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-plus.txt
+brcm/brcmfmac43362-sdio.lemaker,bananapro.txt
+brcm/brcmfmac54591-pcie.clm_blob
+brcm/brcmfmac54591-pcie.bin
+brcm/brcmfmac4373-sdio.clm_blob
+brcm/brcmfmac4373-sdio.bin
+brcm/brcmfmac43570-pcie.clm_blob
+brcm/brcmfmac43570-pcie.bin
+brcm/brcmfmac4356-sdio.clm_blob
+brcm/brcmfmac4356-sdio.bin
+brcm/brcmfmac4356-pcie.clm_blob
+brcm/brcmfmac4356-pcie.bin
+brcm/brcmfmac4354-sdio.clm_blob
+brcm/brcmfmac4354-sdio.bin
+brcm/brcmfmac43455-sdio.clm_blob
+brcm/brcmfmac43455-sdio.bin
+brcm/brcmfmac43430-sdio.clm_blob
+brcm/brcmfmac43430-sdio.bin
+brcm/brcmfmac4339-sdio.bin
+brcm/brcmfmac43362-sdio.bin
+brcm/brcmfmac43340-sdio.bin
+brcm/brcmfmac43012-sdio.clm_blob
+brcm/brcmfmac43012-sdio.bin
+brcm/BCM-0a5c-6410.hcd
+brcm/brcmfmac4356-sdio.vamrs,rock960.txt
+brcm/brcmfmac4356-pcie.gpd-win-pocket.txt
+brcm/brcmfmac43455-sdio.MINIX-NEO Z83-4.txt
+brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt
+brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt
+brcm/brcmfmac43455-sdio.acepc-t8.txt
+brcm/brcmfmac43430-sdio.raspberrypi,3-model-b.txt
+brcm/brcmfmac43430-sdio.MUR1DX.txt
+brcm/brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt
+brcm/brcmfmac43430-sdio.AP6212.txt
+brcm/brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt
+brcm/brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt
+brcm/brcmfmac43430a0-sdio.ilife-S806.txt
+brcm/brcmfmac43362-sdio.cubietech,cubietruck.txt
+brcm/brcmfmac43340-sdio.predia-basic.txt
+brcm/brcmfmac43340-sdio.pov-tab-p1006w-data.txt
+brcm/brcmfmac43340-sdio.meegopad-t08.txt
+brcm/brcmfmac4330-sdio.Prowise-PT301.txt
+brcm/brcmfmac4373.bin
+brcm/brcmfmac4371-pcie.bin
+brcm/brcmfmac4366c-pcie.bin
+brcm/brcmfmac4366b-pcie.bin
+brcm/brcmfmac43602-pcie.ap.bin
+brcm/brcmfmac43602-pcie.bin
+brcm/brcmfmac4358-pcie.bin
+brcm/brcmfmac43569.bin
+brcm/brcmfmac4350-pcie.bin
+brcm/brcmfmac4350c2-pcie.bin
+brcm/brcmfmac43430a0-sdio.bin
+brcm/brcmfmac43143-sdio.bin
+brcm/brcmfmac43143.bin
+brcm/brcmfmac43242a.bin
+brcm/brcmfmac43241b5-sdio.bin
+brcm/brcmfmac43241b4-sdio.bin
+brcm/brcmfmac43241b0-sdio.bin
+brcm/brcmfmac4335-sdio.bin
+brcm/brcmfmac4334-sdio.bin
+brcm/brcmfmac4330-sdio.bin
+brcm/brcmfmac4329-sdio.bin
+brcm/brcmfmac43236b.bin
+brcm/bcm4329-fullmac-4.bin
+brcm/bcm43xx_hdr-0.fw
+brcm/bcm43xx-0.fw
+brcm/BCM-0bb4-0306.hcd
+cadence/mhdp8546.bin
+carl9170-1.fw
+cavium/cnn55xx_se.fw
+cavium/cnn55xx_ae.fw
+cbfw-3.2.1.1.bin
+cbfw-3.2.3.0.bin
+cbfw-3.2.5.1.bin
+cis/SW_8xx_SER.cis
+cis/SW_7xx_SER.cis
+cis/SW_555_SER.cis
+cis/COMpad4.cis
+cis/COMpad2.cis
+cis/RS-COM-2P.cis
+cis/MT5634ZLX.cis
+cis/3CCFEM556.cis
+cis/3CXEM556.cis
+cis/PE520.cis
+cis/PE-200.cis
+cis/tamarack.cis
+cis/NE2K.cis
+cis/DP83903.cis
+cis/PCMLM28.cis
+cis/LA-PCM.cis
+cmmb_vega_12mhz.inp
+cmmb_venice_12mhz.inp
+cnm/wave521c_j721s2_codec_fw.bin
+ct2fw-3.2.1.1.bin
+ct2fw-3.2.3.0.bin
+ct2fw-3.2.5.1.bin
+ctefx.bin
+ctfw-3.2.1.1.bin
+ctfw-3.2.3.0.bin
+ctfw-3.2.5.1.bin
+ctspeq.bin
+cxgb3/ael2020_twx_edc.bin
+cxgb3/ael2005_twx_edc.bin
+cxgb3/ael2005_opt_edc.bin
+cxgb3/t3fw-7.12.0.bin
+cxgb3/t3fw-7.10.0.bin
+cxgb3/t3fw-7.4.0.bin
+cxgb3/t3fw-7.1.0.bin
+cxgb3/t3fw-7.0.0.bin
+cxgb3/t3c_psram-1.1.0.bin
+cxgb3/t3b_psram-1.1.0.bin
+cxgb4/t6-config.txt
+cxgb4/t5-config.txt
+cxgb4/t4-config.txt
+cxgb4/t6fw.bin
+cxgb4/t5fw.bin
+cxgb4/t4fw.bin
+cxgb4/configs/t6-config-hashfilter.txt
+cxgb4/configs/t5-config-hashfilter.txt
+cxgb4/configs/t6-config-default.txt
+cxgb4/configs/t5-config-default.txt
+cxgb4/configs/t4-config-default.txt
+cxgb4/bcm8483.bin
+cxgb4/aq1202_fw.cld
+cxgb4/t6fw-1.26.6.0.bin
+cxgb4/t5fw-1.26.6.0.bin
+cxgb4/t5fw-1.15.37.0.bin
+cxgb4/t5fw-1.14.4.0.bin
+cxgb4/t4fw-1.26.6.0.bin
+cxgb4/t4fw-1.15.37.0.bin
+cxgb4/t4fw-1.14.4.0.bin
+cypress/cyfmac54591-pcie.clm_blob
+cypress/cyfmac54591-pcie.bin
+cypress/cyfmac4373-sdio.clm_blob
+cypress/cyfmac4373-sdio.bin
+cypress/cyfmac43570-pcie.clm_blob
+cypress/cyfmac43570-pcie.bin
+cypress/cyfmac4356-sdio.clm_blob
+cypress/cyfmac4356-sdio.bin
+cypress/cyfmac4356-pcie.clm_blob
+cypress/cyfmac4356-pcie.bin
+cypress/cyfmac4354-sdio.clm_blob
+cypress/cyfmac4354-sdio.bin
+cypress/cyfmac43455-sdio.clm_blob
+cypress/cyfmac43455-sdio.bin
+cypress/cyfmac43430-sdio.clm_blob
+cypress/cyfmac43430-sdio.bin
+cypress/cyfmac4339-sdio.bin
+cypress/cyfmac43362-sdio.bin
+cypress/cyfmac43340-sdio.bin
+cypress/cyfmac43012-sdio.clm_blob
+cypress/cyfmac43012-sdio.bin
+dabusb/bitstream.bin
+dabusb/firmware.fw
+dpaa2/mc/mc_10.28.1_lx2160a.itb
+dpaa2/mc/mc_10.28.1_ls2088a.itb
+dpaa2/mc/mc_10.28.1_ls1088a.itb
+dpaa2/mc/mc_10.18.0_lx2160a.itb
+dpaa2/mc/mc_10.18.0_ls2088a.itb
+dpaa2/mc/mc_10.18.0_ls1088a.itb
+dpaa2/mc/mc_10.16.2_lx2160a.itb
+dpaa2/mc/mc_10.16.2_ls2088a.itb
+dpaa2/mc/mc_10.16.2_ls1088a.itb
+dpaa2/mc/mc_10.14.3_lx2160a.itb
+dpaa2/mc/mc_10.14.3_ls2088a.itb
+dpaa2/mc/mc_10.14.3_ls1088a.itb
+dpaa2/mc/mc_10.10.0_lx2160a.itb
+dpaa2/mc/mc_10.10.0_ls2088a.itb
+dpaa2/mc/mc_10.10.0_ls1088a.itb
+dsp56k/bootstrap.bin
+dvb-fe-xc4000-1.4.1.fw
+dvb-fe-xc5000-1.6.114.fw
+dvb-fe-xc5000c-4.1.30.7.fw
+dvb-usb-dib0700-1.20.fw
+dvb-usb-it9135-01.fw
+dvb-usb-it9135-02.fw
+dvb-usb-terratec-h5-drxk.fw
+dvb_nova_12mhz.inp
+dvb_nova_12mhz_b0.inp
+e100/d102e_ucode.bin
+e100/d101s_ucode.bin
+e100/d101m_ucode.bin
+emi26/loader.fw
+emi26/firmware.fw
+emi26/bitstream.fw
+ene-ub6250/ms_rdwr.bin
+ene-ub6250/msp_rdwr.bin
+ene-ub6250/ms_init.bin
+ene-ub6250/sd_rdwr.bin
+ene-ub6250/sd_init2.bin
+ene-ub6250/sd_init1.bin
+f2255usb.bin
+go7007/wis-startrek.fw
+go7007/px-tv402u.fw
+go7007/px-m402u.fw
+go7007/lr192.fw
+go7007/go7007tv.bin
+go7007/go7007fw.bin
+go7007/s2250-2.fw
+go7007/s2250-1.fw
+hfi1_dc8051.fw
+hfi1_fabric.fw
+hfi1_pcie.fw
+hfi1_sbus.fw
+htc_7010.fw
+htc_9271.fw
+i2400m-fw-usb-1.4.sbcf
+i2400m-fw-usb-1.5.sbcf
+i6050-fw-usb-1.5.sbcf
+i915/skl_guc_ver6.bin
+i915/kbl_dmc_ver1.bin
+i915/bxt_dmc_ver1.bin
+i915/skl_dmc_ver1.bin
+i915/adlp_guc_69.0.3.bin
+i915/adlp_guc_62.0.3.bin
+i915/adlp_dmc_ver2_16.bin
+i915/adlp_dmc_ver2_14.bin
+i915/adlp_dmc_ver2_12.bin
+i915/adlp_dmc_ver2_10.bin
+i915/adlp_dmc_ver2_09.bin
+i915/adls_dmc_ver2_01.bin
+i915/dg1_huc_7.9.3.bin
+i915/dg1_huc_7.7.1.bin
+i915/dg1_guc_69.0.3.bin
+i915/dg1_guc_62.0.0.bin
+i915/dg1_guc_49.0.1.bin
+i915/dg1_dmc_ver2_02.bin
+i915/rkl_dmc_ver2_03.bin
+i915/rkl_dmc_ver2_02.bin
+i915/tgl_huc_7.9.3.bin
+i915/tgl_huc_7.5.0.bin
+i915/tgl_huc_7.0.12.bin
+i915/tgl_huc_7.0.3.bin
+i915/tgl_guc_69.0.3.bin
+i915/tgl_guc_62.0.0.bin
+i915/tgl_guc_49.0.1.bin
+i915/tgl_guc_35.2.0.bin
+i915/ehl_huc_9.0.0.bin
+i915/ehl_guc_69.0.3.bin
+i915/ehl_guc_62.0.0.bin
+i915/ehl_guc_49.0.1.bin
+i915/ehl_guc_33.0.4.bin
+i915/icl_huc_9.0.0.bin
+i915/tgl_dmc_ver2_12.bin
+i915/tgl_dmc_ver2_08.bin
+i915/tgl_dmc_ver2_06.bin
+i915/tgl_dmc_ver2_04.bin
+i915/icl_huc_ver8_4_3238.bin
+i915/icl_guc_69.0.3.bin
+i915/icl_guc_62.0.0.bin
+i915/icl_guc_49.0.1.bin
+i915/icl_guc_33.0.0.bin
+i915/icl_guc_32.0.3.bin
+i915/icl_dmc_ver1_09.bin
+i915/icl_dmc_ver1_07.bin
+i915/cnl_dmc_ver1_07.bin
+i915/cnl_dmc_ver1_06.bin
+i915/cml_huc_4.0.0.bin
+i915/glk_dmc_ver1_04.bin
+i915/glk_huc_4.0.0.bin
+i915/glk_huc_ver03_01_2893.bin
+i915/glk_guc_69.0.3.bin
+i915/glk_guc_62.0.0.bin
+i915/glk_guc_49.0.1.bin
+i915/glk_guc_33.0.0.bin
+i915/glk_guc_32.0.3.bin
+i915/kbl_guc_69.0.3.bin
+i915/kbl_guc_62.0.0.bin
+i915/kbl_guc_49.0.1.bin
+i915/kbl_guc_33.0.0.bin
+i915/kbl_guc_32.0.3.bin
+i915/kbl_guc_ver9_39.bin
+i915/cml_guc_69.0.3.bin
+i915/cml_guc_62.0.0.bin
+i915/cml_guc_49.0.1.bin
+i915/cml_guc_33.0.0.bin
+i915/kbl_guc_ver9_14.bin
+i915/bxt_guc_69.0.3.bin
+i915/bxt_guc_62.0.0.bin
+i915/bxt_guc_49.0.1.bin
+i915/bxt_guc_33.0.0.bin
+i915/bxt_guc_32.0.3.bin
+i915/bxt_guc_ver9_29.bin
+i915/bxt_guc_ver8_7.bin
+i915/kbl_huc_4.0.0.bin
+i915/kbl_huc_ver02_00_1810.bin
+i915/bxt_huc_2.0.0.bin
+i915/bxt_huc_ver01_8_2893.bin
+i915/bxt_huc_ver01_07_1398.bin
+i915/skl_huc_2.0.0.bin
+i915/skl_huc_ver01_07_1398.bin
+i915/skl_guc_69.0.3.bin
+i915/skl_guc_62.0.0.bin
+i915/skl_guc_49.0.1.bin
+i915/skl_guc_33.0.0.bin
+i915/skl_guc_32.0.3.bin
+i915/skl_guc_ver9_33.bin
+i915/skl_guc_ver6_1.bin
+i915/skl_guc_ver4.bin
+i915/skl_guc_ver1.bin
+i915/kbl_dmc_ver1_04.bin
+i915/kbl_dmc_ver1_01.bin
+i915/bxt_dmc_ver1_07.bin
+i915/skl_dmc_ver1_27.bin
+i915/skl_dmc_ver1_26.bin
+i915/skl_dmc_ver1_23.bin
+imx/sdma/sdma-imx7d.bin
+imx/sdma/sdma-imx6q.bin
+inside-secure/eip197_minifw/ifpp.bin
+inside-secure/eip197_minifw/ipue.bin
+intel/dsp_fw_cnl.bin
+intel/dsp_fw_glk.bin
+intel/dsp_fw_kbl.bin
+intel/dsp_fw_bxtn.bin
+intel/dsp_fw_release.bin
+intel/ipu3-fw.bin
+intel/ice/ddp-comms/ice_comms-1.3.20.0.pkg
+intel/ice/ddp/ice.pkg
+intel/ice/ddp/ice-1.3.26.0.pkg
+intel/dsp_fw_cnl_v1858.bin
+intel/dsp_fw_cnl_v1191.bin
+intel/dsp_fw_glk_v3366.bin
+intel/dsp_fw_glk_v2768.bin
+intel/dsp_fw_glk_v2880.bin
+intel/dsp_fw_glk_v1814.bin
+intel/dsp_fw_kbl_v3402.bin
+intel/dsp_fw_kbl_v3420.bin
+intel/dsp_fw_kbl_v3266.bin
+intel/dsp_fw_kbl_v2630.bin
+intel/dsp_fw_kbl_v2042.bin
+intel/dsp_fw_kbl_v1037.bin
+intel/dsp_fw_kbl_v701.bin
+intel/dsp_fw_bxtn_v3366.bin
+intel/dsp_fw_bxtn_v2219.bin
+intel/dsp_fw_release_v3402.bin
+intel/dsp_fw_release_v969.bin
+intel/fw_sst_22a8.bin
+intel/fw_sst_0f28_ssp0.bin
+intel/fw_sst_0f28.bin
+intel/IntcSST2.bin
+intel/fw_sst_0f28.bin-48kHz_i2s_master
+intel/ibt-1040-4150.ddc
+intel/ibt-1040-4150.sfi
+intel/ibt-0040-4150.ddc
+intel/ibt-0040-4150.sfi
+intel/ibt-1040-2120.ddc
+intel/ibt-1040-2120.sfi
+intel/ibt-0040-2120.ddc
+intel/ibt-0040-2120.sfi
+intel/ibt-1040-1020.ddc
+intel/ibt-1040-1020.sfi
+intel/ibt-0040-1020.ddc
+intel/ibt-0040-1020.sfi
+intel/ibt-1040-0041.ddc
+intel/ibt-1040-0041.sfi
+intel/ibt-0040-0041.ddc
+intel/ibt-0040-0041.sfi
+intel/ibt-0041-0041.ddc
+intel/ibt-0041-0041.sfi
+intel/ibt-19-240-4.ddc
+intel/ibt-19-240-4.sfi
+intel/ibt-19-240-1.ddc
+intel/ibt-19-240-1.sfi
+intel/ibt-19-32-4.ddc
+intel/ibt-19-32-4.sfi
+intel/ibt-19-32-0.ddc
+intel/ibt-19-32-0.sfi
+intel/ibt-19-32-1.ddc
+intel/ibt-19-32-1.sfi
+intel/ibt-19-16-4.ddc
+intel/ibt-19-16-4.sfi
+intel/ibt-19-0-4.ddc
+intel/ibt-19-0-4.sfi
+intel/ibt-19-0-1.ddc
+intel/ibt-19-0-1.sfi
+intel/ibt-19-0-0.ddc
+intel/ibt-19-0-0.sfi
+intel/ibt-20-1-4.ddc
+intel/ibt-20-1-4.sfi
+intel/ibt-20-1-3.ddc
+intel/ibt-20-1-3.sfi
+intel/ibt-20-0-3.ddc
+intel/ibt-20-0-3.sfi
+intel/ibt-18-1.ddc
+intel/ibt-18-1.sfi
+intel/ibt-18-0-1.ddc
+intel/ibt-18-0-1.sfi
+intel/ibt-18-2.ddc
+intel/ibt-18-2.sfi
+intel/ibt-18-16-1.ddc
+intel/ibt-18-16-1.sfi
+intel/ibt-17-1.ddc
+intel/ibt-17-1.sfi
+intel/ibt-17-0-1.ddc
+intel/ibt-17-0-1.sfi
+intel/ibt-17-2.ddc
+intel/ibt-17-2.sfi
+intel/ibt-17-16-1.ddc
+intel/ibt-17-16-1.sfi
+intel/ibt-12-16.sfi
+intel/ibt-12-16.ddc
+intel/ibt-11-5.sfi
+intel/ibt-11-5.ddc
+intel/ibt-hw-37.8.10-fw-22.50.19.14.f.bseq
+intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
+intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq
+intel/ibt-hw-37.8.bseq
+intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
+intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq
+intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq
+intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
+intel/ibt-hw-37.7.bseq
+intel/irci_irci_ecr-master_20161208_0213_20170112_1500.bin
+isci/isci_firmware.bin
+isdbt_nova_12mhz.inp
+isdbt_nova_12mhz_b0.inp
+isdbt_rio.inp
+iwlwifi-100-5.ucode
+iwlwifi-1000-3.ucode
+iwlwifi-1000-5.ucode
+iwlwifi-105-6.ucode
+iwlwifi-135-6.ucode
+iwlwifi-2000-6.ucode
+iwlwifi-2030-6.ucode
+iwlwifi-3160-10.ucode
+iwlwifi-3160-12.ucode
+iwlwifi-3160-13.ucode
+iwlwifi-3160-16.ucode
+iwlwifi-3160-17.ucode
+iwlwifi-3160-7.ucode
+iwlwifi-3160-8.ucode
+iwlwifi-3160-9.ucode
+iwlwifi-3168-21.ucode
+iwlwifi-3168-22.ucode
+iwlwifi-3168-27.ucode
+iwlwifi-3168-29.ucode
+iwlwifi-3945-2.ucode
+iwlwifi-4965-2.ucode
+iwlwifi-5000-1.ucode
+iwlwifi-5000-2.ucode
+iwlwifi-5000-5.ucode
+iwlwifi-5150-2.ucode
+iwlwifi-6000-4.ucode
+iwlwifi-6000g2a-5.ucode
+iwlwifi-6000g2a-6.ucode
+iwlwifi-6000g2b-5.ucode
+iwlwifi-6000g2b-6.ucode
+iwlwifi-6050-4.ucode
+iwlwifi-6050-5.ucode
+iwlwifi-7260-10.ucode
+iwlwifi-7260-12.ucode
+iwlwifi-7260-13.ucode
+iwlwifi-7260-16.ucode
+iwlwifi-7260-17.ucode
+iwlwifi-7260-7.ucode
+iwlwifi-7260-8.ucode
+iwlwifi-7260-9.ucode
+iwlwifi-7265-10.ucode
+iwlwifi-7265-12.ucode
+iwlwifi-7265-13.ucode
+iwlwifi-7265-16.ucode
+iwlwifi-7265-17.ucode
+iwlwifi-7265-8.ucode
+iwlwifi-7265-9.ucode
+iwlwifi-7265D-10.ucode
+iwlwifi-7265D-12.ucode
+iwlwifi-7265D-13.ucode
+iwlwifi-7265D-16.ucode
+iwlwifi-7265D-17.ucode
+iwlwifi-7265D-21.ucode
+iwlwifi-7265D-22.ucode
+iwlwifi-7265D-27.ucode
+iwlwifi-7265D-29.ucode
+iwlwifi-8000C-13.ucode
+iwlwifi-8000C-16.ucode
+iwlwifi-8000C-21.ucode
+iwlwifi-8000C-22.ucode
+iwlwifi-8000C-27.ucode
+iwlwifi-8000C-31.ucode
+iwlwifi-8000C-34.ucode
+iwlwifi-8000C-36.ucode
+iwlwifi-8265-21.ucode
+iwlwifi-8265-22.ucode
+iwlwifi-8265-27.ucode
+iwlwifi-8265-31.ucode
+iwlwifi-8265-34.ucode
+iwlwifi-8265-36.ucode
+iwlwifi-9000-pu-b0-jf-b0-33.ucode
+iwlwifi-9000-pu-b0-jf-b0-34.ucode
+iwlwifi-9000-pu-b0-jf-b0-38.ucode
+iwlwifi-9000-pu-b0-jf-b0-41.ucode
+iwlwifi-9000-pu-b0-jf-b0-43.ucode
+iwlwifi-9000-pu-b0-jf-b0-46.ucode
+iwlwifi-9260-th-b0-jf-b0-33.ucode
+iwlwifi-9260-th-b0-jf-b0-34.ucode
+iwlwifi-9260-th-b0-jf-b0-38.ucode
+iwlwifi-9260-th-b0-jf-b0-41.ucode
+iwlwifi-9260-th-b0-jf-b0-43.ucode
+iwlwifi-9260-th-b0-jf-b0-46.ucode
+iwlwifi-Qu-b0-hr-b0-48.ucode
+iwlwifi-Qu-b0-hr-b0-50.ucode
+iwlwifi-Qu-b0-hr-b0-53.ucode
+iwlwifi-Qu-b0-hr-b0-55.ucode
+iwlwifi-Qu-b0-hr-b0-59.ucode
+iwlwifi-Qu-b0-hr-b0-62.ucode
+iwlwifi-Qu-b0-hr-b0-63.ucode
+iwlwifi-Qu-b0-hr-b0-66.ucode
+iwlwifi-Qu-b0-hr-b0-68.ucode
+iwlwifi-Qu-b0-hr-b0-71.ucode
+iwlwifi-Qu-b0-jf-b0-48.ucode
+iwlwifi-Qu-b0-jf-b0-50.ucode
+iwlwifi-Qu-b0-jf-b0-53.ucode
+iwlwifi-Qu-b0-jf-b0-55.ucode
+iwlwifi-Qu-b0-jf-b0-59.ucode
+iwlwifi-Qu-b0-jf-b0-62.ucode
+iwlwifi-Qu-b0-jf-b0-63.ucode
+iwlwifi-Qu-b0-jf-b0-66.ucode
+iwlwifi-Qu-b0-jf-b0-68.ucode
+iwlwifi-Qu-b0-jf-b0-71.ucode
+iwlwifi-Qu-c0-hr-b0-48.ucode
+iwlwifi-Qu-c0-hr-b0-50.ucode
+iwlwifi-Qu-c0-hr-b0-53.ucode
+iwlwifi-Qu-c0-hr-b0-55.ucode
+iwlwifi-Qu-c0-hr-b0-59.ucode
+iwlwifi-Qu-c0-hr-b0-62.ucode
+iwlwifi-Qu-c0-hr-b0-63.ucode
+iwlwifi-Qu-c0-hr-b0-66.ucode
+iwlwifi-Qu-c0-hr-b0-68.ucode
+iwlwifi-Qu-c0-hr-b0-71.ucode
+iwlwifi-Qu-c0-jf-b0-48.ucode
+iwlwifi-Qu-c0-jf-b0-50.ucode
+iwlwifi-Qu-c0-jf-b0-53.ucode
+iwlwifi-Qu-c0-jf-b0-55.ucode
+iwlwifi-Qu-c0-jf-b0-59.ucode
+iwlwifi-Qu-c0-jf-b0-62.ucode
+iwlwifi-Qu-c0-jf-b0-63.ucode
+iwlwifi-Qu-c0-jf-b0-66.ucode
+iwlwifi-Qu-c0-jf-b0-68.ucode
+iwlwifi-Qu-c0-jf-b0-71.ucode
+iwlwifi-QuZ-a0-hr-b0-48.ucode
+iwlwifi-QuZ-a0-hr-b0-50.ucode
+iwlwifi-QuZ-a0-hr-b0-53.ucode
+iwlwifi-QuZ-a0-hr-b0-55.ucode
+iwlwifi-QuZ-a0-hr-b0-59.ucode
+iwlwifi-QuZ-a0-hr-b0-62.ucode
+iwlwifi-QuZ-a0-hr-b0-63.ucode
+iwlwifi-QuZ-a0-hr-b0-66.ucode
+iwlwifi-QuZ-a0-hr-b0-67.ucode
+iwlwifi-QuZ-a0-hr-b0-68.ucode
+iwlwifi-QuZ-a0-hr-b0-71.ucode
+iwlwifi-QuZ-a0-jf-b0-48.ucode
+iwlwifi-QuZ-a0-jf-b0-50.ucode
+iwlwifi-QuZ-a0-jf-b0-53.ucode
+iwlwifi-QuZ-a0-jf-b0-55.ucode
+iwlwifi-QuZ-a0-jf-b0-59.ucode
+iwlwifi-QuZ-a0-jf-b0-62.ucode
+iwlwifi-QuZ-a0-jf-b0-63.ucode
+iwlwifi-QuZ-a0-jf-b0-66.ucode
+iwlwifi-QuZ-a0-jf-b0-68.ucode
+iwlwifi-QuZ-a0-jf-b0-71.ucode
+iwlwifi-cc-a0-46.ucode
+iwlwifi-cc-a0-48.ucode
+iwlwifi-cc-a0-50.ucode
+iwlwifi-cc-a0-53.ucode
+iwlwifi-cc-a0-55.ucode
+iwlwifi-cc-a0-59.ucode
+iwlwifi-cc-a0-62.ucode
+iwlwifi-cc-a0-63.ucode
+iwlwifi-cc-a0-66.ucode
+iwlwifi-cc-a0-67.ucode
+iwlwifi-cc-a0-68.ucode
+iwlwifi-cc-a0-71.ucode
+iwlwifi-so-a0-gf-a0-64.ucode
+iwlwifi-so-a0-gf-a0-67.ucode
+iwlwifi-so-a0-gf-a0-68.ucode
+iwlwifi-so-a0-gf-a0-71.ucode
+iwlwifi-so-a0-gf-a0.pnvm
+iwlwifi-so-a0-gf4-a0-67.ucode
+iwlwifi-so-a0-gf4-a0-68.ucode
+iwlwifi-so-a0-gf4-a0-71.ucode
+iwlwifi-so-a0-gf4-a0.pnvm
+iwlwifi-so-a0-hr-b0-64.ucode
+iwlwifi-so-a0-hr-b0-68.ucode
+iwlwifi-so-a0-hr-b0-71.ucode
+iwlwifi-so-a0-jf-b0-64.ucode
+iwlwifi-so-a0-jf-b0-68.ucode
+iwlwifi-so-a0-jf-b0-71.ucode
+iwlwifi-ty-a0-gf-a0-59.ucode
+iwlwifi-ty-a0-gf-a0-62.ucode
+iwlwifi-ty-a0-gf-a0-63.ucode
+iwlwifi-ty-a0-gf-a0-66.ucode
+iwlwifi-ty-a0-gf-a0-67.ucode
+iwlwifi-ty-a0-gf-a0-68.ucode
+iwlwifi-ty-a0-gf-a0-71.ucode
+iwlwifi-ty-a0-gf-a0.pnvm
+kaweth/trigger_code_fix.bin
+kaweth/trigger_code.bin
+kaweth/new_code_fix.bin
+kaweth/new_code.bin
+keyspan/usa49wlc.fw
+keyspan/usa49w.fw
+keyspan/usa28x.fw
+keyspan/usa28xb.fw
+keyspan/usa28xa.fw
+keyspan/usa28.fw
+keyspan/usa19w.fw
+keyspan/usa19qw.fw
+keyspan/usa19qi.fw
+keyspan/usa19.fw
+keyspan/usa18x.fw
+keyspan/mpr.fw
+keyspan_pda/xircom_pgs.fw
+keyspan_pda/keyspan_pda.fw
+lbtf_usb.bin
+libertas/sd8688_helper.bin
+libertas/sd8688.bin
+libertas/usb8388_olpc.bin
+libertas/lbtf_sdio.bin
+libertas/usb8682.bin
+libertas/usb8388_v9.bin
+libertas/usb8388_v5.bin
+libertas/sd8686_v9_helper.bin
+libertas/sd8686_v9.bin
+libertas/sd8686_v8_helper.bin
+libertas/sd8686_v8.bin
+libertas/sd8682_helper.bin
+libertas/sd8682.bin
+libertas/sd8385_helper.bin
+libertas/sd8385.bin
+libertas/gspi8688_helper.bin
+libertas/gspi8688.bin
+libertas/gspi8686_v9_helper.bin
+libertas/gspi8686_v9.bin
+libertas/gspi8682_helper.bin
+libertas/gspi8682.bin
+libertas/cf8385_helper.bin
+libertas/cf8385.bin
+libertas/cf8381_helper.bin
+libertas/cf8381.bin
+liquidio/lio_410nv_nic.bin
+liquidio/lio_210sv_nic.bin
+liquidio/lio_210nv_nic.bin
+liquidio/lio_23xx_vsw.bin
+liquidio/lio_23xx_nic.bin
+lt9611uxc_fw.bin
+matrox/g400_warp.fw
+matrox/g200_warp.fw
+mediatek/BT_RAM_CODE_MT7922_1_1_hdr.bin
+mediatek/WIFI_RAM_CODE_MT7922_1.bin
+mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin
+mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin
+mediatek/WIFI_RAM_CODE_MT7961_1.bin
+mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin
+mediatek/mt7986_eeprom_mt7975_dual.bin
+mediatek/mt7986_eeprom_mt7976_dual.bin
+mediatek/mt7986_eeprom_mt7976_dbdc.bin
+mediatek/mt7986_eeprom_mt7976.bin
+mediatek/mt7986_rom_patch_mt7975.bin
+mediatek/mt7986_rom_patch.bin
+mediatek/mt7986_wa.bin
+mediatek/mt7986_wm_mt7975.bin
+mediatek/mt7986_wm.bin
+mediatek/mt7916_eeprom.bin
+mediatek/mt7916_rom_patch.bin
+mediatek/mt7916_wa.bin
+mediatek/mt7916_wm.bin
+mediatek/mt7915_eeprom_dbdc.bin
+mediatek/mt7915_eeprom.bin
+mediatek/mt7915_rom_patch.bin
+mediatek/mt7915_wa.bin
+mediatek/mt7915_wm.bin
+mediatek/mt7663_n9_rebb.bin
+mediatek/mt7663pr2h_rebb.bin
+mediatek/mt7663_n9_v3.bin
+mediatek/mt7622_rom_patch.bin
+mediatek/mt7622_n9.bin
+mediatek/mt7615_rom_patch.bin
+mediatek/mt7615_cr4.bin
+mediatek/mt7615_n9.bin
+mediatek/mt7662u_rom_patch.bin
+mediatek/mt7662u.bin
+mediatek/mt7650e.bin
+mediatek/mt7610e.bin
+mediatek/mt7610u.bin
+mediatek/mt7663pr2h.bin
+mediatek/mt7668pr2h.bin
+mediatek/mt7622pr2h.bin
+mediatek/mt8183/scp.img
+mediatek/mt8173/vpu_p.bin
+mediatek/mt8173/vpu_d.bin
+mellanox/mlxsw_spectrum3-30.2010.1406.mfa2
+mellanox/mlxsw_spectrum2-29.2010.1406.mfa2
+mellanox/mlxsw_spectrum-13.2010.1406.mfa2
+mellanox/mlxsw_spectrum3-30.2010.1232.mfa2
+mellanox/mlxsw_spectrum2-29.2010.1232.mfa2
+mellanox/mlxsw_spectrum-13.2010.1232.mfa2
+mellanox/mlxsw_spectrum3-30.2010.1006.mfa2
+mellanox/mlxsw_spectrum2-29.2010.1006.mfa2
+mellanox/mlxsw_spectrum-13.2010.1006.mfa2
+mellanox/mlxsw_spectrum3-30.2008.3326.mfa2
+mellanox/mlxsw_spectrum2-29.2008.3326.mfa2
+mellanox/mlxsw_spectrum-13.2008.3326.mfa2
+mellanox/mlxsw_spectrum3-30.2008.2946.mfa2
+mellanox/mlxsw_spectrum2-29.2008.2946.mfa2
+mellanox/mlxsw_spectrum-13.2008.2946.mfa2
+mellanox/mlxsw_spectrum3-30.2008.2438.mfa2
+mellanox/mlxsw_spectrum2-29.2008.2438.mfa2
+mellanox/mlxsw_spectrum-13.2008.2438.mfa2
+mellanox/mlxsw_spectrum3-30.2008.2406.mfa2
+mellanox/mlxsw_spectrum2-29.2008.2406.mfa2
+mellanox/mlxsw_spectrum-13.2008.2406.mfa2
+mellanox/mlxsw_spectrum3-30.2008.2304.mfa2
+mellanox/mlxsw_spectrum2-29.2008.2304.mfa2
+mellanox/mlxsw_spectrum-13.2008.2304.mfa2
+mellanox/mlxsw_spectrum3-30.2008.2018.mfa2
+mellanox/mlxsw_spectrum2-29.2008.2018.mfa2
+mellanox/mlxsw_spectrum-13.2008.2018.mfa2
+mellanox/mlxsw_spectrum3-30.2008.1312.mfa2
+mellanox/mlxsw_spectrum2-29.2008.1312.mfa2
+mellanox/mlxsw_spectrum-13.2008.1312.mfa2
+mellanox/mlxsw_spectrum3-30.2008.1310.mfa2
+mellanox/mlxsw_spectrum2-29.2008.1310.mfa2
+mellanox/mlxsw_spectrum-13.2008.1310.mfa2
+mellanox/mlxsw_spectrum3-30.2008.1036.mfa2
+mellanox/mlxsw_spectrum2-29.2008.1036.mfa2
+mellanox/mlxsw_spectrum-13.2008.1036.mfa2
+mellanox/mlxsw_spectrum3-30.2007.1168.mfa2
+mellanox/mlxsw_spectrum2-29.2007.1168.mfa2
+mellanox/mlxsw_spectrum-13.2007.1168.mfa2
+mellanox/mlxsw_spectrum2-29.2000.2714.mfa2
+mellanox/mlxsw_spectrum-13.2000.2714.mfa2
+mellanox/mlxsw_spectrum2-29.2000.2308.mfa2
+mellanox/mlxsw_spectrum-13.2000.2308.mfa2
+mellanox/mlxsw_spectrum-13.2000.1886.mfa2
+mellanox/mlxsw_spectrum-13.2000.1122.mfa2
+mellanox/mlxsw_spectrum-13.1910.622.mfa2
+mellanox/mlxsw_spectrum-13.1703.4.mfa2
+mellanox/mlxsw_spectrum-13.1702.6.mfa2
+mellanox/mlxsw_spectrum-13.1620.192.mfa2
+mellanox/mlxsw_spectrum-13.1530.152.mfa2
+mellanox/mlxsw_spectrum-13.1420.122.mfa2
+meson/vdec/sm1_vp9_mmu.bin
+meson/vdec/sm1_hevc_mmu.bin
+meson/vdec/gxm_h264.bin
+meson/vdec/gxl_vp9.bin
+meson/vdec/gxl_mpeg4_5.bin
+meson/vdec/gxl_mpeg12.bin
+meson/vdec/gxl_mjpeg.bin
+meson/vdec/gxl_hevc_mmu.bin
+meson/vdec/gxl_hevc.bin
+meson/vdec/gxl_h264.bin
+meson/vdec/gxl_h263.bin
+meson/vdec/gxbb_h264.bin
+meson/vdec/g12a_vp9.bin
+meson/vdec/g12a_hevc_mmu.bin
+meson/vdec/g12a_h264.bin
+microchip/mscc_vsc8584_revb_int8051_fb48.bin
+microchip/mscc_vsc8574_revb_int8051_29e8.bin
+moxa/moxa-1658.fw
+moxa/moxa-1653.fw
+moxa/moxa-1618.fw
+moxa/moxa-1613.fw
+moxa/moxa-1451.fw
+moxa/moxa-1450.fw
+moxa/moxa-1410.fw
+moxa/moxa-1251.fw
+moxa/moxa-1250.fw
+moxa/moxa-1151.fw
+moxa/moxa-1150.fw
+moxa/moxa-1131.fw
+moxa/moxa-1130.fw
+moxa/moxa-1110.fw
+mrvl/cpt04/ie.out
+mrvl/cpt04/se.out
+mrvl/cpt04/ae.out
+mrvl/cpt03/ie.out
+mrvl/cpt03/se.out
+mrvl/cpt03/ae.out
+mrvl/cpt02/ie.out
+mrvl/cpt02/se.out
+mrvl/cpt02/ae.out
+mrvl/cpt01/ie.out
+mrvl/cpt01/se.out
+mrvl/cpt01/ae.out
+mrvl/prestera/mvsw_prestera_fw-v4.0.img
+mrvl/prestera/mvsw_prestera_fw-v3.0.img
+mrvl/prestera/mvsw_prestera_fw-v2.0.img
+mrvl/sdsd8977_combo_v2.bin
+mrvl/sdsd8997_combo_v4.bin
+mrvl/usbusb8997_combo_v4.bin
+mrvl/pcie8997_wlan_v4.bin
+mrvl/pcieusb8997_combo_v4.bin
+mrvl/pcieuart8997_combo_v4.bin
+mrvl/usb8801_uapsta.bin
+mrvl/sd8801_uapsta.bin
+mrvl/sd8887_uapsta.bin
+mrvl/pcie8897_uapsta.bin
+mrvl/usb8897_uapsta.bin
+mrvl/sd8897_uapsta.bin
+mrvl/usb8797_uapsta.bin
+mrvl/sd8797_uapsta.bin
+mrvl/usb8766_uapsta.bin
+mrvl/sd8787_uapsta.bin
+mrvl/sd8688_helper.bin
+mrvl/sd8688.bin
+mt7601u.bin
+mt7650.bin
+mt7662.bin
+mt7662_rom_patch.bin
+mts_cdma.fw
+mts_edge.fw
+mts_gsm.fw
+mwl8k/fmimage_8764_ap-1.fw
+mwl8k/helper_8366.fw
+mwl8k/fmimage_8366_ap-3.fw
+mwl8k/fmimage_8366_ap-2.fw
+mwl8k/fmimage_8366_ap-1.fw
+mwl8k/fmimage_8366.fw
+mwl8k/helper_8687.fw
+mwl8k/fmimage_8687.fw
+mwlwifi/88W8897.bin
+mwlwifi/88W8864.bin
+myri10ge_eth_big_z8e.dat
+myri10ge_eth_z8e.dat
+myri10ge_ethp_big_z8e.dat
+myri10ge_ethp_z8e.dat
+myri10ge_rss_eth_big_z8e.dat
+myri10ge_rss_eth_z8e.dat
+myri10ge_rss_ethp_big_z8e.dat
+myri10ge_rss_ethp_z8e.dat
+netronome/nic_AMDA0078-0011_1x100.nffw
+netronome/nic_AMDA0058-0012_2x40.nffw
+netronome/nic_AMDA0058-0011_2x40.nffw
+netronome/nic_AMDA0097-0001_8x10.nffw
+netronome/nic_AMDA0096-0001_2x10.nffw
+netronome/nic_AMDA0099-0001_2x25.nffw
+netronome/nic_AMDA0099-0001_1x10_1x25.nffw
+netronome/nic_AMDA0097-0001_4x10_1x40.nffw
+netronome/nic_AMDA0081-0001_4x10.nffw
+netronome/nic_AMDA0099-0001_2x10.nffw
+netronome/nic_AMDA0097-0001_2x40.nffw
+netronome/nic_AMDA0081-0001_1x40.nffw
+netronome/bpf/nic_AMDA0078-0011_1x100.nffw
+netronome/bpf/nic_AMDA0058-0012_2x40.nffw
+netronome/bpf/nic_AMDA0058-0011_2x40.nffw
+netronome/bpf/nic_AMDA0097-0001_8x10.nffw
+netronome/bpf/nic_AMDA0096-0001_2x10.nffw
+netronome/bpf/nic_AMDA0099-0001_2x25.nffw
+netronome/bpf/nic_AMDA0099-0001_1x10_1x25.nffw
+netronome/bpf/nic_AMDA0097-0001_4x10_1x40.nffw
+netronome/bpf/nic_AMDA0081-0001_4x10.nffw
+netronome/bpf/nic_AMDA0099-0001_2x10.nffw
+netronome/bpf/nic_AMDA0097-0001_2x40.nffw
+netronome/bpf/nic_AMDA0081-0001_1x40.nffw
+netronome/flower/nic_AMDA0078-0012_8x10.nffw
+netronome/flower/nic_AMDA0078-0012_4x10_1x40.nffw
+netronome/flower/nic_AMDA0078-0012_2x40.nffw
+netronome/flower/nic_AMDA0078-0012_1x100.nffw
+netronome/flower/nic_AMDA0078-0011_8x10.nffw
+netronome/flower/nic_AMDA0078-0011_4x10_1x40.nffw
+netronome/flower/nic_AMDA0078-0011_2x40.nffw
+netronome/flower/nic_AMDA0078-0011_1x100.nffw
+netronome/flower/nic_AMDA0058-0012_8x10.nffw
+netronome/flower/nic_AMDA0058-0012_4x10_1x40.nffw
+netronome/flower/nic_AMDA0058-0012_2x40.nffw
+netronome/flower/nic_AMDA0058-0012_1x100.nffw
+netronome/flower/nic_AMDA0058-0011_8x10.nffw
+netronome/flower/nic_AMDA0058-0011_4x10_1x40.nffw
+netronome/flower/nic_AMDA0058-0011_2x40.nffw
+netronome/flower/nic_AMDA0058-0011_1x100.nffw
+netronome/flower/nic_AMDA0099-0001_1x10_1x25.nffw
+netronome/flower/nic_AMDA0097-0001_8x10.nffw
+netronome/flower/nic_AMDA0096-0001_2x10.nffw
+netronome/flower/nic_AMDA0099-0001_2x25.nffw
+netronome/flower/nic_AMDA0097-0001_4x10_1x40.nffw
+netronome/flower/nic_AMDA0081-0001_4x10.nffw
+netronome/flower/nic_AMDA0099-0001_2x10.nffw
+netronome/flower/nic_AMDA0097-0001_2x40.nffw
+netronome/flower/nic_AMDA0081-0001_1x40.nffw
+netronome/flower/nic_AMDA0081.nffw
+netronome/flower/nic_AMDA0058.nffw
+netronome/flower/nic_AMDA0097.nffw
+netronome/flower/nic_AMDA0096.nffw
+netronome/flower/nic_AMDA0099.nffw
+netronome/nic-sriov/nic_AMDA0078-0011_1x100.nffw
+netronome/nic-sriov/nic_AMDA0058-0012_2x40.nffw
+netronome/nic-sriov/nic_AMDA0058-0011_2x40.nffw
+netronome/nic-sriov/nic_AMDA0097-0001_8x10.nffw
+netronome/nic-sriov/nic_AMDA0096-0001_2x10.nffw
+netronome/nic-sriov/nic_AMDA0099-0001_2x25.nffw
+netronome/nic-sriov/nic_AMDA0099-0001_1x10_1x25.nffw
+netronome/nic-sriov/nic_AMDA0097-0001_4x10_1x40.nffw
+netronome/nic-sriov/nic_AMDA0081-0001_4x10.nffw
+netronome/nic-sriov/nic_AMDA0099-0001_2x10.nffw
+netronome/nic-sriov/nic_AMDA0097-0001_2x40.nffw
+netronome/nic-sriov/nic_AMDA0081-0001_1x40.nffw
+netronome/nic/nic_AMDA0078-0011_1x100.nffw
+netronome/nic/nic_AMDA0058-0012_2x40.nffw
+netronome/nic/nic_AMDA0058-0011_2x40.nffw
+netronome/nic/nic_AMDA0097-0001_8x10.nffw
+netronome/nic/nic_AMDA0096-0001_2x10.nffw
+netronome/nic/nic_AMDA0099-0001_2x25.nffw
+netronome/nic/nic_AMDA0099-0001_1x10_1x25.nffw
+netronome/nic/nic_AMDA0097-0001_4x10_1x40.nffw
+netronome/nic/nic_AMDA0081-0001_4x10.nffw
+netronome/nic/nic_AMDA0099-0001_2x10.nffw
+netronome/nic/nic_AMDA0097-0001_2x40.nffw
+netronome/nic/nic_AMDA0081-0001_1x40.nffw
+nvidia/tu10x/typec/ccg_boot.cyacd
+nvidia/tu10x/typec/ccg_secondary.cyacd
+nvidia/tu10x/typec/ccg_primary.cyacd
+nvidia/tu117/sec2/sig.bin
+nvidia/tu117/sec2/image.bin
+nvidia/tu117/sec2/desc.bin
+nvidia/tu117/nvdec/scrubber.bin
+nvidia/tu117/acr/unload_bl.bin
+nvidia/tu117/acr/ucode_unload.bin
+nvidia/tu117/acr/ucode_asb.bin
+nvidia/tu117/acr/ucode_ahesasc.bin
+nvidia/tu117/acr/bl.bin
+nvidia/tu117/gr/gpccs_bl.bin
+nvidia/tu117/gr/fecs_bl.bin
+nvidia/tu117/gr/sw_veid_bundle_init.bin
+nvidia/tu117/gr/sw_nonctx.bin
+nvidia/tu117/gr/sw_method_init.bin
+nvidia/tu117/gr/sw_ctx.bin
+nvidia/tu117/gr/sw_bundle_init.bin
+nvidia/tu117/gr/gpccs_sig.bin
+nvidia/tu117/gr/gpccs_inst.bin
+nvidia/tu117/gr/gpccs_data.bin
+nvidia/tu117/gr/fecs_sig.bin
+nvidia/tu117/gr/fecs_inst.bin
+nvidia/tu117/gr/fecs_data.bin
+nvidia/tu116/sec2/sig.bin
+nvidia/tu116/sec2/image.bin
+nvidia/tu116/sec2/desc.bin
+nvidia/tu116/nvdec/scrubber.bin
+nvidia/tu116/gr/sw_veid_bundle_init.bin
+nvidia/tu116/gr/sw_nonctx.bin
+nvidia/tu116/gr/sw_method_init.bin
+nvidia/tu116/gr/sw_ctx.bin
+nvidia/tu116/gr/sw_bundle_init.bin
+nvidia/tu116/gr/gpccs_sig.bin
+nvidia/tu116/gr/gpccs_inst.bin
+nvidia/tu116/gr/gpccs_data.bin
+nvidia/tu116/gr/gpccs_bl.bin
+nvidia/tu116/gr/fecs_sig.bin
+nvidia/tu116/gr/fecs_inst.bin
+nvidia/tu116/gr/fecs_data.bin
+nvidia/tu116/gr/fecs_bl.bin
+nvidia/tu116/acr/unload_bl.bin
+nvidia/tu116/acr/ucode_unload.bin
+nvidia/tu116/acr/ucode_asb.bin
+nvidia/tu116/acr/ucode_ahesasc.bin
+nvidia/tu116/acr/bl.bin
+nvidia/tu106/sec2/sig.bin
+nvidia/tu106/sec2/image.bin
+nvidia/tu106/sec2/desc.bin
+nvidia/tu106/nvdec/scrubber.bin
+nvidia/tu106/acr/ucode_unload.bin
+nvidia/tu106/acr/unload_bl.bin
+nvidia/tu106/acr/ucode_asb.bin
+nvidia/tu106/acr/ucode_ahesasc.bin
+nvidia/tu106/acr/bl.bin
+nvidia/tu106/gr/gpccs_bl.bin
+nvidia/tu106/gr/fecs_bl.bin
+nvidia/tu106/gr/sw_veid_bundle_init.bin
+nvidia/tu106/gr/sw_nonctx.bin
+nvidia/tu106/gr/sw_method_init.bin
+nvidia/tu106/gr/sw_ctx.bin
+nvidia/tu106/gr/sw_bundle_init.bin
+nvidia/tu106/gr/gpccs_sig.bin
+nvidia/tu106/gr/gpccs_inst.bin
+nvidia/tu106/gr/gpccs_data.bin
+nvidia/tu106/gr/fecs_sig.bin
+nvidia/tu106/gr/fecs_inst.bin
+nvidia/tu106/gr/fecs_data.bin
+nvidia/tu104/sec2/sig.bin
+nvidia/tu104/sec2/image.bin
+nvidia/tu104/sec2/desc.bin
+nvidia/tu104/nvdec/scrubber.bin
+nvidia/tu104/acr/ucode_unload.bin
+nvidia/tu104/acr/unload_bl.bin
+nvidia/tu104/acr/ucode_asb.bin
+nvidia/tu104/acr/ucode_ahesasc.bin
+nvidia/tu104/acr/bl.bin
+nvidia/tu104/gr/gpccs_bl.bin
+nvidia/tu104/gr/fecs_bl.bin
+nvidia/tu104/gr/sw_veid_bundle_init.bin
+nvidia/tu104/gr/sw_nonctx.bin
+nvidia/tu104/gr/sw_method_init.bin
+nvidia/tu104/gr/sw_ctx.bin
+nvidia/tu104/gr/sw_bundle_init.bin
+nvidia/tu104/gr/gpccs_sig.bin
+nvidia/tu104/gr/gpccs_inst.bin
+nvidia/tu104/gr/gpccs_data.bin
+nvidia/tu104/gr/fecs_sig.bin
+nvidia/tu104/gr/fecs_inst.bin
+nvidia/tu104/gr/fecs_data.bin
+nvidia/tu102/sec2/sig.bin
+nvidia/tu102/sec2/image.bin
+nvidia/tu102/sec2/desc.bin
+nvidia/tu102/nvdec/scrubber.bin
+nvidia/tu102/gr/sw_veid_bundle_init.bin
+nvidia/tu102/gr/sw_nonctx.bin
+nvidia/tu102/gr/sw_method_init.bin
+nvidia/tu102/gr/sw_ctx.bin
+nvidia/tu102/gr/sw_bundle_init.bin
+nvidia/tu102/gr/gpccs_sig.bin
+nvidia/tu102/gr/gpccs_inst.bin
+nvidia/tu102/gr/gpccs_data.bin
+nvidia/tu102/gr/gpccs_bl.bin
+nvidia/tu102/gr/fecs_sig.bin
+nvidia/tu102/gr/fecs_inst.bin
+nvidia/tu102/gr/fecs_data.bin
+nvidia/tu102/gr/fecs_bl.bin
+nvidia/tu102/acr/ucode_unload.bin
+nvidia/tu102/acr/unload_bl.bin
+nvidia/tu102/acr/ucode_asb.bin
+nvidia/tu102/acr/ucode_ahesasc.bin
+nvidia/tu102/acr/bl.bin
+nvidia/gv100/sec2/sig.bin
+nvidia/gv100/sec2/image.bin
+nvidia/gv100/sec2/desc.bin
+nvidia/gv100/nvdec/scrubber.bin
+nvidia/gv100/gr/sw_nonctx.bin
+nvidia/gv100/gr/sw_method_init.bin
+nvidia/gv100/gr/sw_ctx.bin
+nvidia/gv100/gr/sw_bundle_init.bin
+nvidia/gv100/gr/gpccs_sig.bin
+nvidia/gv100/gr/gpccs_inst.bin
+nvidia/gv100/gr/gpccs_data.bin
+nvidia/gv100/gr/gpccs_bl.bin
+nvidia/gv100/gr/fecs_sig.bin
+nvidia/gv100/gr/fecs_inst.bin
+nvidia/gv100/gr/fecs_data.bin
+nvidia/gv100/gr/fecs_bl.bin
+nvidia/gv100/acr/unload_bl.bin
+nvidia/gv100/acr/ucode_unload.bin
+nvidia/gv100/acr/ucode_load.bin
+nvidia/gv100/acr/bl.bin
+nvidia/gp108/sec2/sig.bin
+nvidia/gp108/sec2/image.bin
+nvidia/gp108/sec2/desc.bin
+nvidia/gp108/nvdec/scrubber.bin
+nvidia/gp108/acr/unload_bl.bin
+nvidia/gp108/acr/ucode_unload.bin
+nvidia/gp108/acr/ucode_load.bin
+nvidia/gp108/acr/bl.bin
+nvidia/gp108/gr/sw_nonctx.bin
+nvidia/gp108/gr/sw_method_init.bin
+nvidia/gp108/gr/sw_ctx.bin
+nvidia/gp108/gr/sw_bundle_init.bin
+nvidia/gp108/gr/gpccs_sig.bin
+nvidia/gp108/gr/gpccs_inst.bin
+nvidia/gp108/gr/gpccs_data.bin
+nvidia/gp108/gr/gpccs_bl.bin
+nvidia/gp108/gr/fecs_sig.bin
+nvidia/gp108/gr/fecs_inst.bin
+nvidia/gp108/gr/fecs_data.bin
+nvidia/gp108/gr/fecs_bl.bin
+nvidia/gp10b/pmu/sig.bin
+nvidia/gp10b/pmu/image.bin
+nvidia/gp10b/pmu/desc.bin
+nvidia/gp10b/gr/sw_nonctx.bin
+nvidia/gp10b/gr/sw_method_init.bin
+nvidia/gp10b/gr/sw_ctx.bin
+nvidia/gp10b/gr/sw_bundle_init.bin
+nvidia/gp10b/gr/gpccs_sig.bin
+nvidia/gp10b/gr/gpccs_inst.bin
+nvidia/gp10b/gr/gpccs_data.bin
+nvidia/gp10b/gr/gpccs_bl.bin
+nvidia/gp10b/gr/fecs_sig.bin
+nvidia/gp10b/gr/fecs_inst.bin
+nvidia/gp10b/gr/fecs_data.bin
+nvidia/gp10b/gr/fecs_bl.bin
+nvidia/gp10b/acr/ucode_load.bin
+nvidia/gp10b/acr/bl.bin
+nvidia/gp107/sec2/sig-1.bin
+nvidia/gp107/sec2/image-1.bin
+nvidia/gp107/sec2/desc-1.bin
+nvidia/gp107/sec2/sig.bin
+nvidia/gp107/sec2/image.bin
+nvidia/gp107/sec2/desc.bin
+nvidia/gp107/nvdec/scrubber.bin
+nvidia/gp107/acr/unload_bl.bin
+nvidia/gp107/acr/ucode_unload.bin
+nvidia/gp107/acr/ucode_load.bin
+nvidia/gp107/acr/bl.bin
+nvidia/gp107/gr/sw_method_init.bin
+nvidia/gp107/gr/sw_bundle_init.bin
+nvidia/gp107/gr/sw_nonctx.bin
+nvidia/gp107/gr/sw_ctx.bin
+nvidia/gp107/gr/gpccs_sig.bin
+nvidia/gp107/gr/gpccs_inst.bin
+nvidia/gp107/gr/gpccs_data.bin
+nvidia/gp107/gr/gpccs_bl.bin
+nvidia/gp107/gr/fecs_sig.bin
+nvidia/gp107/gr/fecs_inst.bin
+nvidia/gp107/gr/fecs_data.bin
+nvidia/gp107/gr/fecs_bl.bin
+nvidia/gp106/sec2/sig-1.bin
+nvidia/gp106/sec2/image-1.bin
+nvidia/gp106/sec2/desc-1.bin
+nvidia/gp106/sec2/sig.bin
+nvidia/gp106/sec2/image.bin
+nvidia/gp106/sec2/desc.bin
+nvidia/gp106/nvdec/scrubber.bin
+nvidia/gp106/acr/unload_bl.bin
+nvidia/gp106/acr/ucode_unload.bin
+nvidia/gp106/acr/ucode_load.bin
+nvidia/gp106/acr/bl.bin
+nvidia/gp106/gr/sw_nonctx.bin
+nvidia/gp106/gr/sw_method_init.bin
+nvidia/gp106/gr/sw_ctx.bin
+nvidia/gp106/gr/sw_bundle_init.bin
+nvidia/gp106/gr/gpccs_inst.bin
+nvidia/gp106/gr/gpccs_bl.bin
+nvidia/gp106/gr/fecs_inst.bin
+nvidia/gp106/gr/fecs_bl.bin
+nvidia/gp106/gr/gpccs_sig.bin
+nvidia/gp106/gr/gpccs_data.bin
+nvidia/gp106/gr/fecs_sig.bin
+nvidia/gp106/gr/fecs_data.bin
+nvidia/gp104/sec2/sig-1.bin
+nvidia/gp104/sec2/image-1.bin
+nvidia/gp104/sec2/desc-1.bin
+nvidia/gp104/sec2/sig.bin
+nvidia/gp104/sec2/image.bin
+nvidia/gp104/sec2/desc.bin
+nvidia/gp104/nvdec/scrubber.bin
+nvidia/gp104/acr/unload_bl.bin
+nvidia/gp104/acr/ucode_unload.bin
+nvidia/gp104/acr/ucode_load.bin
+nvidia/gp104/acr/bl.bin
+nvidia/gp104/gr/sw_nonctx.bin
+nvidia/gp104/gr/sw_method_init.bin
+nvidia/gp104/gr/sw_ctx.bin
+nvidia/gp104/gr/sw_bundle_init.bin
+nvidia/gp104/gr/gpccs_bl.bin
+nvidia/gp104/gr/fecs_bl.bin
+nvidia/gp104/gr/gpccs_sig.bin
+nvidia/gp104/gr/gpccs_inst.bin
+nvidia/gp104/gr/gpccs_data.bin
+nvidia/gp104/gr/fecs_sig.bin
+nvidia/gp104/gr/fecs_inst.bin
+nvidia/gp104/gr/fecs_data.bin
+nvidia/gp102/sec2/sig-1.bin
+nvidia/gp102/sec2/image-1.bin
+nvidia/gp102/sec2/desc-1.bin
+nvidia/gp102/sec2/sig.bin
+nvidia/gp102/sec2/image.bin
+nvidia/gp102/sec2/desc.bin
+nvidia/gp102/nvdec/scrubber.bin
+nvidia/gp102/gr/gpccs_bl.bin
+nvidia/gp102/gr/fecs_bl.bin
+nvidia/gp102/gr/sw_nonctx.bin
+nvidia/gp102/gr/sw_method_init.bin
+nvidia/gp102/gr/sw_ctx.bin
+nvidia/gp102/gr/sw_bundle_init.bin
+nvidia/gp102/gr/gpccs_sig.bin
+nvidia/gp102/gr/gpccs_inst.bin
+nvidia/gp102/gr/gpccs_data.bin
+nvidia/gp102/gr/fecs_sig.bin
+nvidia/gp102/gr/fecs_inst.bin
+nvidia/gp102/gr/fecs_data.bin
+nvidia/gp102/acr/unload_bl.bin
+nvidia/gp102/acr/ucode_unload.bin
+nvidia/gp102/acr/ucode_load.bin
+nvidia/gp102/acr/bl.bin
+nvidia/gp100/gr/gpccs_bl.bin
+nvidia/gp100/gr/fecs_bl.bin
+nvidia/gp100/gr/sw_nonctx.bin
+nvidia/gp100/gr/sw_method_init.bin
+nvidia/gp100/gr/sw_ctx.bin
+nvidia/gp100/gr/sw_bundle_init.bin
+nvidia/gp100/gr/gpccs_sig.bin
+nvidia/gp100/gr/gpccs_inst.bin
+nvidia/gp100/gr/gpccs_data.bin
+nvidia/gp100/gr/fecs_sig.bin
+nvidia/gp100/gr/fecs_inst.bin
+nvidia/gp100/gr/fecs_data.bin
+nvidia/gp100/acr/ucode_unload.bin
+nvidia/gp100/acr/ucode_load.bin
+nvidia/gp100/acr/bl.bin
+nvidia/gm20b/pmu/sig.bin
+nvidia/gm20b/pmu/image.bin
+nvidia/gm20b/pmu/desc.bin
+nvidia/gm20b/gr/sw_method_init.bin
+nvidia/gm20b/gr/sw_nonctx.bin
+nvidia/gm20b/gr/sw_ctx.bin
+nvidia/gm20b/gr/sw_bundle_init.bin
+nvidia/gm20b/gr/gpccs_inst.bin
+nvidia/gm20b/gr/gpccs_data.bin
+nvidia/gm20b/gr/fecs_sig.bin
+nvidia/gm20b/gr/fecs_inst.bin
+nvidia/gm20b/gr/fecs_data.bin
+nvidia/gm20b/gr/fecs_bl.bin
+nvidia/gm20b/acr/ucode_load.bin
+nvidia/gm20b/acr/bl.bin
+nvidia/gm206/gr/sw_nonctx.bin
+nvidia/gm206/gr/sw_method_init.bin
+nvidia/gm206/gr/sw_ctx.bin
+nvidia/gm206/gr/sw_bundle_init.bin
+nvidia/gm206/gr/gpccs_inst.bin
+nvidia/gm206/gr/gpccs_bl.bin
+nvidia/gm206/gr/fecs_inst.bin
+nvidia/gm206/gr/fecs_bl.bin
+nvidia/gm206/gr/gpccs_sig.bin
+nvidia/gm206/gr/gpccs_data.bin
+nvidia/gm206/gr/fecs_sig.bin
+nvidia/gm206/gr/fecs_data.bin
+nvidia/gm206/acr/bl.bin
+nvidia/gm206/acr/ucode_unload.bin
+nvidia/gm206/acr/ucode_load.bin
+nvidia/gm204/acr/ucode_unload.bin
+nvidia/gm204/acr/ucode_load.bin
+nvidia/gm204/acr/bl.bin
+nvidia/gm204/gr/sw_nonctx.bin
+nvidia/gm204/gr/sw_method_init.bin
+nvidia/gm204/gr/sw_ctx.bin
+nvidia/gm204/gr/sw_bundle_init.bin
+nvidia/gm204/gr/gpccs_inst.bin
+nvidia/gm204/gr/gpccs_bl.bin
+nvidia/gm204/gr/fecs_inst.bin
+nvidia/gm204/gr/fecs_bl.bin
+nvidia/gm204/gr/gpccs_sig.bin
+nvidia/gm204/gr/gpccs_data.bin
+nvidia/gm204/gr/fecs_sig.bin
+nvidia/gm204/gr/fecs_data.bin
+nvidia/gm200/gr/sw_nonctx.bin
+nvidia/gm200/gr/sw_method_init.bin
+nvidia/gm200/gr/sw_ctx.bin
+nvidia/gm200/gr/sw_bundle_init.bin
+nvidia/gm200/gr/gpccs_sig.bin
+nvidia/gm200/gr/gpccs_inst.bin
+nvidia/gm200/gr/gpccs_data.bin
+nvidia/gm200/gr/gpccs_bl.bin
+nvidia/gm200/gr/fecs_sig.bin
+nvidia/gm200/gr/fecs_inst.bin
+nvidia/gm200/gr/fecs_data.bin
+nvidia/gm200/gr/fecs_bl.bin
+nvidia/gm200/acr/ucode_unload.bin
+nvidia/gm200/acr/ucode_load.bin
+nvidia/gm200/acr/bl.bin
+nvidia/gk20a/sw_nonctx.bin
+nvidia/gk20a/sw_method_init.bin
+nvidia/gk20a/sw_ctx.bin
+nvidia/gk20a/sw_bundle_init.bin
+nvidia/gk20a/gpccs_inst.bin
+nvidia/gk20a/gpccs_data.bin
+nvidia/gk20a/fecs_inst.bin
+nvidia/gk20a/fecs_data.bin
+nvidia/tegra194/vic.bin
+nvidia/tegra194/xusb.bin
+nvidia/tegra186/vic.bin
+nvidia/tegra186/vic04_ucode.bin
+nvidia/tegra186/xusb.bin
+nvidia/tegra210/vic.bin
+nvidia/tegra210/vic04_ucode.bin
+nvidia/tegra210/xusb.bin
+nvidia/tegra124/vic.bin
+nvidia/tegra124/vic03_ucode.bin
+nvidia/tegra124/xusb.bin
+phanfw.bin
+qat_895xcc.bin
+qat_895xcc_mmp.bin
+qat_c3xxx.bin
+qat_c3xxx_mmp.bin
+qat_c62x.bin
+qat_c62x_mmp.bin
+qat_mmp.bin
+qca/msnv11.bin
+qca/msbtfw11.tlv
+qca/msbtfw11.mbn
+qca/crnv32u.bin
+qca/crnv32.bin
+qca/crbtfw32.tlv
+qca/crnv21.bin
+qca/crbtfw21.tlv
+qca/nvm_usb_00130201_gf_0303.bin
+qca/nvm_usb_00130201_gf_010b.bin
+qca/nvm_usb_00130201_gf_010a.bin
+qca/nvm_usb_00130201_gf.bin
+qca/nvm_usb_00130201_0303.bin
+qca/nvm_usb_00130201_010b.bin
+qca/nvm_usb_00130201_010a.bin
+qca/nvm_usb_00130201.bin
+qca/rampatch_usb_00130201.bin
+qca/nvm_usb_00130200_0110.bin
+qca/nvm_usb_00130200_0109.bin
+qca/nvm_usb_00130200_0107.bin
+qca/nvm_usb_00130200_0106.bin
+qca/nvm_usb_00130200_0105.bin
+qca/nvm_usb_00130200_0104.bin
+qca/nvm_usb_00130200.bin
+qca/rampatch_usb_00130200.bin
+qca/htnv20.bin
+qca/htbtfw20.tlv
+qca/nvm_usb_00000302_eu.bin
+qca/nvm_00440302_i2s_eu.bin
+qca/nvm_00440302_eu.bin
+qca/rampatch_00440302.bin
+qca/nvm_00440302.bin
+qca/rampatch_00230302.bin
+qca/rampatch_00130302.bin
+qca/rampatch_00130300.bin
+qca/rampatch_usb_00000302.bin
+qca/rampatch_usb_00000300.bin
+qca/rampatch_usb_00000201.bin
+qca/rampatch_usb_00000200.bin
+qca/nvm_00230302.bin
+qca/nvm_00130302.bin
+qca/nvm_00130300.bin
+qca/nvm_usb_00000302.bin
+qca/nvm_usb_00000300.bin
+qca/nvm_usb_00000200.bin
+qca/nvm_usb_00000201.bin
+qcom/a660_sqe.fw
+qcom/a660_gmu.bin
+qcom/sm8250/cdspr.jsn
+qcom/sm8250/cdsp.mbn
+qcom/sm8250/adspua.jsn
+qcom/sm8250/adspr.jsn
+qcom/sm8250/adsp.mbn
+qcom/sm8250/a650_zap.mbn
+qcom/a650_sqe.fw
+qcom/a650_gmu.bin
+qcom/sdm845/wlanmdsp.mbn
+qcom/sdm845/modemuw.jsn
+qcom/sdm845/modem.mbn
+qcom/sdm845/mba.mbn
+qcom/sdm845/cdspr.jsn
+qcom/sdm845/cdsp.mbn
+qcom/sdm845/adspua.jsn
+qcom/sdm845/adspr.jsn
+qcom/sdm845/adsp.mbn
+qcom/sdm845/a630_zap.mbn
+qcom/a630_sqe.fw
+qcom/a630_gmu.bin
+qcom/a530_zap.mdt
+qcom/a530_zap.b02
+qcom/a530_zap.b01
+qcom/a530_zap.b00
+qcom/a530v3_gpmu.fw2
+qcom/a530_pm4.fw
+qcom/a530_pfp.fw
+qcom/a300_pm4.fw
+qcom/a300_pfp.fw
+qcom/vpu-2.0/venus.mbn
+qcom/vpu-2.0/venus.b19
+qcom/vpu-2.0/venus.b10
+qcom/vpu-2.0/venus.b09
+qcom/vpu-2.0/venus.b08
+qcom/vpu-2.0/venus.b07
+qcom/vpu-2.0/venus.b06
+qcom/vpu-2.0/venus.b05
+qcom/vpu-2.0/venus.b04
+qcom/vpu-2.0/venus.b03
+qcom/vpu-2.0/venus.b02
+qcom/vpu-2.0/venus.b01
+qcom/vpu-2.0/venus.b00
+qcom/vpu-2.0/venus.mdt
+qcom/vpu-1.0/venus.mbn
+qcom/vpu-1.0/venus.b19
+qcom/vpu-1.0/venus.b10
+qcom/vpu-1.0/venus.b09
+qcom/vpu-1.0/venus.b08
+qcom/vpu-1.0/venus.b07
+qcom/vpu-1.0/venus.b06
+qcom/vpu-1.0/venus.b05
+qcom/vpu-1.0/venus.b04
+qcom/vpu-1.0/venus.b03
+qcom/vpu-1.0/venus.b02
+qcom/vpu-1.0/venus.b01
+qcom/vpu-1.0/venus.b00
+qcom/vpu-1.0/venus.mdt
+qcom/venus-5.4/venus.mbn
+qcom/venus-5.4/venus.b04
+qcom/venus-5.4/venus.b03
+qcom/venus-5.4/venus.b02
+qcom/venus-5.4/venus.b01
+qcom/venus-5.4/venus.b00
+qcom/venus-5.4/venus.mdt
+qcom/venus-5.2/venus.mbn
+qcom/venus-5.2/venus.b04
+qcom/venus-5.2/venus.b03
+qcom/venus-5.2/venus.b02
+qcom/venus-5.2/venus.b01
+qcom/venus-5.2/venus.b00
+qcom/venus-5.2/venus.mdt
+qcom/venus-4.2/venus.b04
+qcom/venus-4.2/venus.b03
+qcom/venus-4.2/venus.b02
+qcom/venus-4.2/venus.b01
+qcom/venus-4.2/venus.b00
+qcom/venus-4.2/venus.mdt
+qcom/venus-1.8/venus.b04
+qcom/venus-1.8/venus.b03
+qcom/venus-1.8/venus.b02
+qcom/venus-1.8/venus.b01
+qcom/venus-1.8/venus.b00
+qcom/venus-1.8/venus.mdt
+qed/qed_init_values_zipped-8.59.1.0.bin
+qed/qed_init_values_zipped-8.42.2.0.bin
+qed/qed_init_values-8.40.33.0.bin