Merge remote-tracking branch 'origin/next'

This commit is contained in:
Michael Tremer
2021-06-21 10:04:11 +00:00
405 changed files with 5713 additions and 21153 deletions

View File

@@ -1,9 +0,0 @@
/var/log/asterisk/messages /var/log/asterisk/full /var/log/asterisk/security /var/log/asterisk/*_log {
weekly
missingok
rotate 4
sharedscripts
postrotate
/usr/sbin/asterisk -rx 'logger reload' > /dev/null 2> /dev/null
endscript
}

View File

@@ -57,12 +57,21 @@ make_backup() {
make_addon_backup "${addon}"
done
tar cvzf "${filename}" \
# Backup using global exclude/include definitions
tar cvf "${filename}" \
--exclude-from="/var/ipfire/backup/exclude" \
--exclude-from="/var/ipfire/backup/exclude.user" \
$(process_includes "/var/ipfire/backup/include" "/var/ipfire/backup/include.user") \
$(process_includes "/var/ipfire/backup/include") \
"$@"
# Backup using user exclude/include definitions and append to global backup
tar rvf "${filename}" \
--exclude-from="/var/ipfire/backup/exclude.user" \
$(process_includes "/var/ipfire/backup/include.user") \
"$@"
# gzip the combined global/user backup and use .ipf suffix
gzip --suffix .ipf "${filename}"
return 0
}
@@ -206,7 +215,7 @@ main() {
local filename="${1}"
if [ -z "${filename}" ]; then
filename="/var/ipfire/backup/${NOW}.ipf"
filename="/var/ipfire/backup/${NOW}"
fi
make_backup "${filename}" $(find_logfiles)
@@ -216,7 +225,7 @@ main() {
local filename="${1}"
if [ -z "${filename}" ]; then
filename="/var/ipfire/backup/${NOW}.ipf"
filename="/var/ipfire/backup/${NOW}"
fi
make_backup "${filename}"

View File

@@ -1,2 +0,0 @@
/var/ipfire/asterisk/
/var/log/asterisk/cdr-csv/

View File

@@ -1 +0,0 @@
/etc/lcd4linux.conf

View File

@@ -1 +0,0 @@
/etc/motion.conf

View File

@@ -1 +0,0 @@
/etc/sane.d/

File diff suppressed because it is too large Load Diff

View File

@@ -28,6 +28,77 @@ $General::adminmanualurl = 'http://wiki.ipfire.org';
require "${General::swroot}/network-functions.pl";
# This function executes a shell command without forking a shell or do any other
# Perl-voodoo before it. It deprecates the "system" command and is the only way
# to call shell commands.
sub safe_system($) {
my @command = @_;
system { ${command[0]} } @command;
# Return exit code
return $? >> 8;
}
# Calls a process in the background and returns nothing
sub system_background($) {
my $pid = fork();
unless ($pid) {
my $rc = &system(@_);
exit($rc);
}
return 0;
}
# Returns the output of a shell command
sub system_output($) {
my @command = @_;
my $pid;
my @output = ();
unless ($pid = open(OUTPUT, "-|")) {
open(STDERR, ">&STDOUT");
exec { ${command[0]} } @command;
die "Could not execute @command: $!";
}
waitpid($pid, 0);
while (<OUTPUT>) {
push(@output, $_);
}
close(OUTPUT);
return @output;
}
# Calls a shell command and throws away the output
sub system($) {
my @command = @_;
open(SAVEOUT, ">&STDOUT");
open(SAVEERR, ">&STDERR");
open(STDOUT, ">/dev/null");
open(STDERR, ">&STDOUT");
select(STDERR); $|=1;
select(STDOUT); $|=1;
my $rc = &safe_system(@command);
close(STDOUT);
close(STDERR);
# Restore
open(STDOUT, ">&SAVEOUT");
open(STDERR, ">&SAVEERR");
return $rc;
}
# Function to remove duplicates from an array
sub uniq { my %seen; grep !$seen{$_}++, @_ }
@@ -42,7 +113,7 @@ sub log
my $logmessage = $_[0];
$logmessage =~ /([\w\W]*)/;
$logmessage = $1;
system('logger', '-t', $tag, $logmessage);
&system('logger', '-t', $tag, $logmessage);
}
sub setup_default_networks
{
@@ -1152,7 +1223,7 @@ sub firewall_needs_reload() {
}
sub firewall_reload() {
system("/usr/local/bin/firewallctrl");
&system("/usr/local/bin/firewallctrl");
}
# Function which will return the used interface for the red network zone (red0, ppp0, etc).

View File

@@ -118,7 +118,7 @@ sub check_and_create_filelayout() {
#
sub checkdiskspace () {
# Call diskfree to gather the free disk space of /var.
my @df = `/bin/df -B M /var`;
my @df = &General::system_output("/bin/df", "-B", "M", "/var");
# Loop through the output.
foreach my $line (@df) {
@@ -463,7 +463,7 @@ sub call_suricatactrl ($) {
# Call the suricatactrl binary and pass the "cron" command
# with the requrested interval.
system("$suricatactrl $option $interval &>/dev/null");
&General::system("$suricatactrl", "$option", "$interval");
# Return "1" - True.
return 1;
@@ -475,7 +475,7 @@ sub call_suricatactrl ($) {
} else {
# Call the suricatactrl binary and pass the requrested
# option to it.
system("$suricatactrl $option &>/dev/null");
&General::system("$suricatactrl", "$option");
# Return "1" - True.
return 1;

View File

@@ -360,7 +360,7 @@ sub _get_wireless_status($) {
my $intf = shift;
if (!$wireless_status{$intf}) {
$wireless_status{$intf} = `iwconfig $intf`;
$wireless_status{$intf} = &General::system_output("iwconfig", "$intf");
}
return $wireless_status{$intf};

0
config/elinks/elinks.conf Executable file → Normal file
View File

View File

@@ -1,85 +0,0 @@
#
# DirectFB video modes, should be placed into "/etc"
#
mode "640x480 75Hz 16bit"
# D: 31.50 MHz, H: 37.500 kHz, V: 75.00 Hz
geometry 640 480 640 480 16
timings 31747 120 16 16 1 64 3
endmode
mode "720x576 50Hz 16bit"
geometry 720 576 720 576 16
timings 31208 144 40 32 10 128 3
endmode
mode "768x576 75Hz 16bit"
# D: 49.188 MHz, H: 46.580 kHz, V: 75.008 Hz
geometry 768 576 768 576 16
timings 20330 128 32 32 8 128 5
endmode
mode "800x600 75Hz 16bit"
# D: 49.50 MHz, H: 46.875 kHz, V: 75.00 Hz
geometry 800 600 800 600 16
timings 20203 160 16 21 1 80 3
hsync high
vsync high
endmode
mode "1024x768 72Hz 16bit"
# D: 75.00 MHz, H: 58.230 kHz, V: 72.245 Hz
geometry 1024 768 1024 768 16
timings 13334 104 24 29 3 136 6
endmode
mode "1280x1024-75"
# D: 134.880 MHz, H: 79.905 kHz, V: 74.958 Hz
geometry 1280 1024 1280 3264 16
timings 7414 232 64 38 1 112 3
hsync high
vsync high
endmode
mode "1280x1024 60Hz 16bit"
# D: 108.00 MHz, H: 63.981 kHz, V: 60.02 Hz
geometry 1280 1024 1280 1024 16
timings 9260 248 48 38 1 112 3
hsync high
vsync high
endmode
mode "1600x1200 60Hz 16bit"
# D: 156.00 MHz, H: 76.200 kHz, V: 60.00 Hz
geometry 1600 1200 1600 1200 16
timings 6411 256 32 52 10 160 8
endmode
mode "640x400 93Hz 16bit"
geometry 640 400 640 400 16
timings 28272 48 32 17 22 128 12
endmode
mode "400x300 100Hz 16bit"
geometry 400 300 400 300 16
timings 31747 40 16 16 1 40 3
double true
endmode
mode "320x240 85Hz 16bit"
geometry 320 240 320 240 16
timings 51383 32 32 20 4 48 1
double true
endmode
mode "320x200 85Hz 16bit"
geometry 320 200 320 200 16
timings 60440 32 32 20 4 48 1
double true
endmode

View File

@@ -34,6 +34,11 @@ block_subnet() {
local subnet="${1}"
local action="${2}"
# Nothing to be done if no action is requested
if [ "${action}" = "none" ]; then
return 0
fi
# Don't block a wildcard subnet
if [ "${subnet}" = "0.0.0.0/0" ] || [ "${subnet}" = "0.0.0.0/0.0.0.0" ]; then
return 0
@@ -108,7 +113,7 @@ install_policy() {
case "${route}" in
route)
action="drop"
action="none"
;;
*)
action="reject"

View File

@@ -39,13 +39,7 @@
'title' => "$Lang::tr{'blue access'}",
'enabled' => 1,
};
$subfirewall->{'80.upnp'} = {
'caption' => 'UPnP',
'uri' => '/cgi-bin/upnp.cgi',
'title' => "Universal Plug and Play",
'enabled' => 0,
};
$subfirewall->{'90.iptables'} = {
$subfirewall->{'90.iptables'} = {
'caption' => $Lang::tr{'ipts'},
'uri' => '/cgi-bin/iptables.cgi',
'title' => "$Lang::tr{'ipts'}",

View File

@@ -1,50 +0,0 @@
# LAN network interfaces IPs / networks
# there can be multiple listening ips for SSDP traffic.
# should be under the form nnn.nnn.nnn.nnn/nn
listening_ip=green0
#listening_ip=green1
# HTTP is available on all interfaces
# port for HTTP (descriptions and SOAP) traffic. set 0 for autoselect.
port=0
# chain names for netfilter (not used for pf or ipf).
upnp_forward_chain=UPNPFW
upnp_nat_chain=UPNPFW
# bitrates reported by daemon in bits per second
bitrate_up=1000000
bitrate_down=10000000
# "secure" mode : when enabled, UPnP client are allowed to add mappings only
# to their IP.
secure_mode=yes
# report system uptime instead of daemon uptime
system_uptime=yes
# notify interval in seconds. default is 30 seconds.
notify_interval=60
# unused rules cleaning.
# never remove any rule before this threshold for the number
# of redirections is exceeded. default to 20
#clean_ruleset_threshold=10
# clean process work interval in seconds. default to 0 (disabled).
# a 600 seconds (10 minutes) interval makes sense
clean_ruleset_interval=600
# serial and model number the daemon will report to clients
# in its XML description
serial=12345678
model_number=1
# UPnP permission rules
# (allow|deny) (external port range) ip/mask (internal port range)
# A port range is <min port>-<max port> or <port> if there is only
# one port in the range.
# ip/mask format must be nn.nn.nn.nn/nn
# it is advised to only allow redirection of port above 1024
# and to finish the rule set with "deny 0-65535 0.0.0.0/0 0-65535"
allow 0-65535 0.0.0.0/0 0-65535

View File

@@ -1,637 +0,0 @@
# Rename this distribution example file to motion.conf
#
# This config file was generated by motion 3.2.11
############################################################
# Daemon
############################################################
# Start in daemon (background) mode and release terminal (default: off)
daemon on
# File to store the process ID, also called pid file. (default: not defined)
process_id_file /var/run/motion.pid
############################################################
# Basic Setup Mode
############################################################
# Start in Setup-Mode, daemon disabled. (default: off)
setup_mode off
###########################################################
# Capture device options
############################################################
# Videodevice to be used for capturing (default /dev/video0)
# for FreeBSD default is /dev/bktr0
videodevice /dev/video0
# v4l2_palette allows to choose preferable palette to be use by motion
# to capture from those supported by your videodevice. (default: 8)
# E.g. if your videodevice supports both V4L2_PIX_FMT_SBGGR8 and
# V4L2_PIX_FMT_MJPEG then motion will by default use V4L2_PIX_FMT_MJPEG.
# Setting v4l2_palette to 1 forces motion to use V4L2_PIX_FMT_SBGGR8
# instead.
#
# Values :
# V4L2_PIX_FMT_SN9C10X : 0 'S910'
# V4L2_PIX_FMT_SBGGR8 : 1 'BA81'
# V4L2_PIX_FMT_MJPEG : 2 'MJPEG'
# V4L2_PIX_FMT_JPEG : 3 'JPEG'
# V4L2_PIX_FMT_RGB24 : 4 'RGB3'
# V4L2_PIX_FMT_UYVY : 5 'UYVY'
# V4L2_PIX_FMT_YUYV : 6 'YUYV'
# V4L2_PIX_FMT_YUV422P : 7 '422P'
# V4L2_PIX_FMT_YUV420 : 8 'YU12'
v4l2_palette 8
# Tuner device to be used for capturing using tuner as source (default /dev/tuner0)
# This is ONLY used for FreeBSD. Leave it commented out for Linux
; tunerdevice /dev/tuner0
# The video input to be used (default: 8)
# Should normally be set to 0 or 1 for video/TV cards, and 8 for USB cameras
input 8
# The video norm to use (only for video capture and TV tuner cards)
# Values: 0 (PAL), 1 (NTSC), 2 (SECAM), 3 (PAL NC no colour). Default: 0 (PAL)
norm 0
# The frequency to set the tuner to (kHz) (only for TV tuner cards) (default: 0)
frequency 0
# Rotate image this number of degrees. The rotation affects all saved images as
# well as mpeg movies. Valid values: 0 (default = no rotation), 90, 180 and 270.
rotate 0
# Image width (pixels). Valid range: Camera dependent, default: 352
width 640
# Image height (pixels). Valid range: Camera dependent, default: 288
height 480
# Maximum number of frames to be captured per second.
# Valid range: 2-100. Default: 100 (almost no limit).
framerate 2
# Minimum time in seconds between capturing picture frames from the camera.
# Default: 0 = disabled - the capture rate is given by the camera framerate.
# This option is used when you want to capture images at a rate lower than 2 per second.
minimum_frame_time 0
# URL to use if you are using a network camera, size will be autodetected (incl http:// ftp:// or file:///)
# Must be a URL that returns single jpeg pictures or a raw mjpeg stream. Default: Not defined
; netcam_url value
# Username and password for network camera (only if required). Default: not defined
# Syntax is user:password
; netcam_userpass value
# The setting for keep-alive of network socket, should improve performance on compatible net cameras.
# 1.0: The historical implementation using HTTP/1.0, closing the socket after each http request.
# keep_alive: Use HTTP/1.0 requests with keep alive header to reuse the same connection.
# 1.1: Use HTTP/1.1 requests that support keep alive as default.
# Default: 1.0
; netcam_http 1.0
# URL to use for a netcam proxy server, if required, e.g. "http://myproxy".
# If a port number other than 80 is needed, use "http://myproxy:1234".
# Default: not defined
; netcam_proxy value
# Set less strict jpeg checks for network cameras with a poor/buggy firmware.
# Default: off
netcam_tolerant_check off
# Let motion regulate the brightness of a video device (default: off).
# The auto_brightness feature uses the brightness option as its target value.
# If brightness is zero auto_brightness will adjust to average brightness value 128.
# Only recommended for cameras without auto brightness
auto_brightness on
# Set the initial brightness of a video device.
# If auto_brightness is enabled, this value defines the average brightness level
# which Motion will try and adjust to.
# Valid range 0-255, default 0 = disabled
brightness 128
# Set the contrast of a video device.
# Valid range 0-255, default 0 = disabled
contrast 0
# Set the saturation of a video device.
# Valid range 0-255, default 0 = disabled
saturation 0
# Set the hue of a video device (NTSC feature).
# Valid range 0-255, default 0 = disabled
hue 0
############################################################
# Round Robin (multiple inputs on same video device name)
############################################################
# Number of frames to capture in each roundrobin step (default: 1)
roundrobin_frames 1
# Number of frames to skip before each roundrobin step (default: 1)
roundrobin_skip 1
# Try to filter out noise generated by roundrobin (default: off)
switchfilter off
############################################################
# Motion Detection Settings:
############################################################
# Threshold for number of changed pixels in an image that
# triggers motion detection (default: 1500)
threshold 1500
# Automatically tune the threshold down if possible (default: off)
threshold_tune off
# Noise threshold for the motion detection (default: 32)
noise_level 32
# Automatically tune the noise threshold (default: on)
noise_tune on
# Despeckle motion image using (e)rode or (d)ilate or (l)abel (Default: not defined)
# Recommended value is EedDl. Any combination (and number of) of E, e, d, and D is valid.
# (l)abeling must only be used once and the 'l' must be the last letter.
# Comment out to disable
despeckle EedDl
# Detect motion in predefined areas (1 - 9). Areas are numbered like that: 1 2 3
# A script (on_area_detected) is started immediately when motion is 4 5 6
# detected in one of the given areas, but only once during an event. 7 8 9
# One or more areas can be specified with this option. (Default: not defined)
; area_detect value
# PGM file to use as a sensitivity mask.
# Full path name to. (Default: not defined)
; mask_file value
# Dynamically create a mask file during operation (default: 0)
# Adjust speed of mask changes from 0 (off) to 10 (fast)
smart_mask_speed 0
# Ignore sudden massive light intensity changes given as a percentage of the picture
# area that changed intensity. Valid range: 0 - 100 , default: 0 = disabled
lightswitch 0
# Picture frames must contain motion at least the specified number of frames
# in a row before they are detected as true motion. At the default of 1, all
# motion is detected. Valid range: 1 to thousands, recommended 1-5
minimum_motion_frames 1
# Specifies the number of pre-captured (buffered) pictures from before motion
# was detected that will be output at motion detection.
# Recommended range: 0 to 5 (default: 0)
# Do not use large values! Large values will cause Motion to skip video frames and
# cause unsmooth mpegs. To smooth mpegs use larger values of post_capture instead.
pre_capture 5
# Number of frames to capture after motion is no longer detected (default: 0)
post_capture 5
# Gap is the seconds of no motion detection that triggers the end of an event
# An event is defined as a series of motion images taken within a short timeframe.
# Recommended value is 60 seconds (Default). The value 0 is allowed and disables
# events causing all Motion to be written to one single mpeg file and no pre_capture.
gap 0
# Maximum length in seconds of an mpeg movie
# When value is exceeded a new mpeg file is created. (Default: 0 = infinite)
max_mpeg_time 86400
# Always save images even if there was no motion (default: off)
output_all off
############################################################
# Image File Output
############################################################
# Output 'normal' pictures when motion is detected (default: on)
# Valid values: on, off, first, best, center
# When set to 'first', only the first picture of an event is saved.
# Picture with most motion of an event is saved when set to 'best'.
# Picture with motion nearest center of picture is saved when set to 'center'.
# Can be used as preview shot for the corresponding movie.
output_normal off
# Output pictures with only the pixels moving object (ghost images) (default: off)
output_motion off
# The quality (in percent) to be used by the jpeg compression (default: 75)
quality 75
# Output ppm images instead of jpeg (default: off)
ppm off
############################################################
# FFMPEG related options
# Film (mpeg) file output, and deinterlacing of the video input
# The options movie_filename and timelapse_filename are also used
# by the ffmpeg feature
############################################################
# Use ffmpeg to encode mpeg movies in realtime (default: off)
ffmpeg_cap_new off
# Use ffmpeg to make movies with only the pixels moving
# object (ghost images) (default: off)
ffmpeg_cap_motion off
# Use ffmpeg to encode a timelapse movie
# Default value 0 = off - else save frame every Nth second
ffmpeg_timelapse 0
# The file rollover mode of the timelapse video
# Valid values: hourly, daily (default), weekly-sunday, weekly-monday, monthly, manual
ffmpeg_timelapse_mode daily
# Bitrate to be used by the ffmpeg encoder (default: 400000)
# This option is ignored if ffmpeg_variable_bitrate is not 0 (disabled)
ffmpeg_bps 500000
# Enables and defines variable bitrate for the ffmpeg encoder.
# ffmpeg_bps is ignored if variable bitrate is enabled.
# Valid values: 0 (default) = fixed bitrate defined by ffmpeg_bps,
# or the range 2 - 31 where 2 means best quality and 31 is worst.
ffmpeg_variable_bitrate 0
# Codec to used by ffmpeg for the video compression.
# Timelapse mpegs are always made in mpeg1 format independent from this option.
# Supported formats are: mpeg1 (ffmpeg-0.4.8 only), mpeg4 (default), and msmpeg4.
# mpeg1 - gives you files with extension .mpg
# mpeg4 or msmpeg4 - gives you files with extension .avi
# msmpeg4 is recommended for use with Windows Media Player because
# it requires no installation of codec on the Windows client.
# swf - gives you a flash film with extension .swf
# flv - gives you a flash video with extension .flv
# ffv1 - FF video codec 1 for Lossless Encoding ( experimental )
# mov - QuickTime ( testing )
ffmpeg_video_codec msmpeg4
# Use ffmpeg to deinterlace video. Necessary if you use an analog camera
# and see horizontal combing on moving objects in video or pictures.
# (default: off)
ffmpeg_deinterlace off
############################################################
# Snapshots (Traditional Periodic Webcam File Output)
############################################################
# Make automated snapshot every N seconds (default: 0 = disabled)
snapshot_interval 0
############################################################
# Text Display
# %Y = year, %m = month, %d = date,
# %H = hour, %M = minute, %S = second, %T = HH:MM:SS,
# %v = event, %q = frame number, %t = thread (camera) number,
# %D = changed pixels, %N = noise level, \n = new line,
# %i and %J = width and height of motion area,
# %K and %L = X and Y coordinates of motion center
# %C = value defined by text_event - do not use with text_event!
# You can put quotation marks around the text to allow
# leading spaces
############################################################
# Locate and draw a box around the moving object.
# Valid values: on, off and preview (default: off)
# Set to 'preview' will only draw a box in preview_shot pictures.
locate off
# Draws the timestamp using same options as C function strftime(3)
# Default: %Y-%m-%d\n%T = date in ISO format and time in 24 hour clock
# Text is placed in lower right corner
text_right %Y-%m-%d\n%T-%q
# Draw a user defined text on the images using same options as C function strftime(3)
# Default: Not defined = no text
# Text is placed in lower left corner
text_left CAMERA %t\nhttp://www.ipfire.org
# Draw the number of changed pixed on the images (default: off)
# Will normally be set to off except when you setup and adjust the motion settings
# Text is placed in upper right corner
text_changes off
# This option defines the value of the special event conversion specifier %C
# You can use any conversion specifier in this option except %C. Date and time
# values are from the timestamp of the first image in the current event.
# Default: %Y%m%d%H%M%S
# The idea is that %C can be used filenames and text_left/right for creating
# a unique identifier for each event.
text_event %Y%m%d%H%M%S
# Draw characters at twice normal size on images. (default: off)
text_double off
############################################################
# Target Directories and filenames For Images And Films
# For the options snapshot_, jpeg_, mpeg_ and timelapse_filename
# you can use conversion specifiers
# %Y = year, %m = month, %d = date,
# %H = hour, %M = minute, %S = second,
# %v = event, %q = frame number, %t = thread (camera) number,
# %D = changed pixels, %N = noise level,
# %i and %J = width and height of motion area,
# %K and %L = X and Y coordinates of motion center
# %C = value defined by text_event
# Quotation marks round string are allowed.
############################################################
# Target base directory for pictures and films
# Recommended to use absolute path. (Default: current working directory)
target_dir /var/motion/cam1
# File path for snapshots (jpeg or ppm) relative to target_dir
# Default: %v-%Y%m%d%H%M%S-snapshot
# Default value is equivalent to legacy oldlayout option
# For Motion 3.0 compatible mode choose: %Y/%m/%d/%H/%M/%S-snapshot
# File extension .jpg or .ppm is automatically added so do not include this.
# Note: A symbolic link called lastsnap.jpg created in the target_dir will always
# point to the latest snapshot, unless snapshot_filename is exactly 'lastsnap'
snapshot_filename %v-%Y%m%d%H%M%S-snapshot
# File path for motion triggered images (jpeg or ppm) relative to target_dir
# Default: %v-%Y%m%d%H%M%S-%q
# Default value is equivalent to legacy oldlayout option
# For Motion 3.0 compatible mode choose: %Y/%m/%d/%H/%M/%S-%q
# File extension .jpg or .ppm is automatically added so do not include this
# Set to 'preview' together with best-preview feature enables special naming
# convention for preview shots. See motion guide for details
jpeg_filename %v-%Y%m%d%H%M%S-%q
# File path for motion triggered ffmpeg films (mpeg) relative to target_dir
# Default: %v-%Y%m%d%H%M%S
# Default value is equivalent to legacy oldlayout option
# For Motion 3.0 compatible mode choose: %Y/%m/%d/%H%M%S
# File extension .mpg or .avi is automatically added so do not include this
# This option was previously called ffmpeg_filename
movie_filename %v-%Y%m%d%H%M%S
# File path for timelapse mpegs relative to target_dir
# Default: %Y%m%d-timelapse
# Default value is near equivalent to legacy oldlayout option
# For Motion 3.0 compatible mode choose: %Y/%m/%d-timelapse
# File extension .mpg is automatically added so do not include this
timelapse_filename %Y%m%d-timelapse
############################################################
# Live Webcam Server
############################################################
# The mini-http server listens to this port for requests (default: 0 = disabled)
webcam_port 2500
# Quality of the jpeg images produced (default: 50)
webcam_quality 50
# Output frames at 1 fps when no motion is detected and increase to the
# rate given by webcam_maxrate when motion is detected (default: off)
webcam_motion off
# Maximum framerate for webcam streams (default: 1)
webcam_maxrate 1
# Restrict webcam connections to localhost only (default: on)
webcam_localhost off
# Limits the number of images per connection (default: 0 = unlimited)
# Number can be defined by multiplying actual webcam rate by desired number of seconds
# Actual webcam rate is the smallest of the numbers framerate and webcam_maxrate
webcam_limit 0
############################################################
# HTTP Based Control
############################################################
# TCP/IP port for the http server to listen on (default: 0 = disabled)
control_port 0
# Restrict control connections to localhost only (default: on)
control_localhost on
# Output for http server, select off to choose raw text plain (default: on)
control_html_output on
# Authentication for the http based control. Syntax username:password
# Default: not defined (Disabled)
; control_authentication username:password
############################################################
# Tracking (Pan/Tilt)
############################################################
# Type of tracker (0=none (default), 1=stepper, 2=iomojo, 3=pwc, 4=generic, 5=uvcvideo)
# The generic type enables the definition of motion center and motion size to
# be used with the conversion specifiers for options like on_motion_detected
track_type 0
# Enable auto tracking (default: off)
track_auto off
# Serial port of motor (default: none)
; track_port value
# Motor number for x-axis (default: 0)
track_motorx 0
# Motor number for y-axis (default: 0)
track_motory 0
# Maximum value on x-axis (default: 0)
track_maxx 0
# Maximum value on y-axis (default: 0)
track_maxy 0
# ID of an iomojo camera if used (default: 0)
track_iomojo_id 0
# Angle in degrees the camera moves per step on the X-axis
# with auto-track (default: 10)
# Currently only used with pwc type cameras
track_step_angle_x 10
# Angle in degrees the camera moves per step on the Y-axis
# with auto-track (default: 10)
# Currently only used with pwc type cameras
track_step_angle_y 10
# Delay to wait for after tracking movement as number
# of picture frames (default: 10)
track_move_wait 10
# Speed to set the motor to (stepper motor option) (default: 255)
track_speed 255
# Number of steps to make (stepper motor option) (default: 40)
track_stepsize 40
############################################################
# External Commands, Warnings and Logging:
# You can use conversion specifiers for the on_xxxx commands
# %Y = year, %m = month, %d = date,
# %H = hour, %M = minute, %S = second,
# %v = event, %q = frame number, %t = thread (camera) number,
# %D = changed pixels, %N = noise level,
# %i and %J = width and height of motion area,
# %K and %L = X and Y coordinates of motion center
# %C = value defined by text_event
# %f = filename with full path
# %n = number indicating filetype
# Both %f and %n are only defined for on_picture_save,
# on_movie_start and on_movie_end
# Quotation marks round string are allowed.
############################################################
# Do not sound beeps when detecting motion (default: on)
# Note: Motion never beeps when running in daemon mode.
quiet on
# Command to be executed when an event starts. (default: none)
# An event starts at first motion detected after a period of no motion defined by gap
; on_event_start value
# Command to be executed when an event ends after a period of no motion
# (default: none). The period of no motion is defined by option gap.
; on_event_end value
# Command to be executed when a picture (.ppm|.jpg) is saved (default: none)
# To give the filename as an argument to a command append it with %f
; on_picture_save value
# Command to be executed when a motion frame is detected (default: none)
; on_motion_detected value
# Command to be executed when motion in a predefined area is detected
# Check option 'area_detect'. (default: none)
; on_area_detected value
# Command to be executed when a movie file (.mpg|.avi) is created. (default: none)
# To give the filename as an argument to a command append it with %f
; on_movie_start value
# Command to be executed when a movie file (.mpg|.avi) is closed. (default: none)
# To give the filename as an argument to a command append it with %f
; on_movie_end value
# Command to be executed when a camera can't be opened or if it is lost
# NOTE: There is situations when motion doesn't detect a lost camera!
# It depends on the driver, some drivers don't detect a lost camera at all
# Some hang the motion thread. Some even hang the PC! (default: none)
; on_camera_lost value
############################################################
# Common Options For MySQL and PostgreSQL database features.
# Options require the MySQL/PostgreSQL options to be active also.
############################################################
# Log to the database when creating motion triggered image file (default: on)
sql_log_image on
# Log to the database when creating a snapshot image file (default: on)
sql_log_snapshot on
# Log to the database when creating motion triggered mpeg file (default: off)
sql_log_mpeg off
# Log to the database when creating timelapse mpeg file (default: off)
sql_log_timelapse off
# SQL query string that is sent to the database
# Use same conversion specifiers has for text features
# Additional special conversion specifiers are
# %n = the number representing the file_type
# %f = filename with full path
# Default value:
# insert into security(camera, filename, frame, file_type, time_stamp, text_event) values('%t', '%f', '%q', '%n', '%Y-%m-%d %T', '%C')
sql_query insert into security(camera, filename, frame, file_type, time_stamp, event_time_stamp) values('%t', '%f', '%q', '%n', '%Y-%m-%d %T', '%C')
############################################################
# Database Options For MySQL
############################################################
# Mysql database to log to (default: not defined)
; mysql_db value
# The host on which the database is located (default: localhost)
; mysql_host value
# User account name for MySQL database (default: not defined)
; mysql_user value
# User password for MySQL database (default: not defined)
; mysql_password value
############################################################
# Database Options For PostgreSQL
############################################################
# PostgreSQL database to log to (default: not defined)
; pgsql_db value
# The host on which the database is located (default: localhost)
; pgsql_host value
# User account name for PostgreSQL database (default: not defined)
; pgsql_user value
# User password for PostgreSQL database (default: not defined)
; pgsql_password value
# Port on which the PostgreSQL database is located (default: 5432)
; pgsql_port 5432
############################################################
# Video Loopback Device (vloopback project)
############################################################
# Output images to a video4linux loopback device
# The value '-' means next available (default: not defined)
; video_pipe value
# Output motion images to a video4linux loopback device
# The value '-' means next available (default: not defined)
; motion_video_pipe value
##############################################################
# Thread config files - One for each camera.
# Except if only one camera - You only need this config file.
# If you have more than one camera you MUST define one thread
# config file for each camera in addition to this config file.
##############################################################
# Remember: If you have more than one camera you must have one
# thread file for each camera. E.g. 2 cameras requires 3 files:
# This motion.conf file AND thread1.conf and thread2.conf.
# Only put the options that are unique to each camera in the
# thread config files.
; thread /usr/local/etc/thread1.conf
; thread /usr/local/etc/thread2.conf
; thread /usr/local/etc/thread3.conf
; thread /usr/local/etc/thread4.conf

View File

@@ -6,6 +6,8 @@ usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encod
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/README
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/big5.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/euc-kr.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/ibm866.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-15.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-2.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-3.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-4.enc
@@ -13,8 +15,11 @@ usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encod
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-7.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-8.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/iso-8859-9.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/koi8-r.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/windows-1250.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/windows-1251.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/windows-1252.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/windows-1255.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/x-euc-jp-jisx0221.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/x-euc-jp-unicode.enc
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Encodings/x-sjis-cp932.enc
@@ -33,7 +38,6 @@ usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/XML/Parser/Style
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/XML/Parser
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/XML/Parser/.packlist
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/XML/Parser/Expat
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/XML/Parser/Expat/Expat.bs
usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/XML/Parser/Expat/Expat.so
#usr/share/man/man3/XML::Parser.3
#usr/share/man/man3/XML::Parser::Expat.3

View File

@@ -46,14 +46,12 @@ etc/rc.d/init.d/networking/orange
etc/rc.d/init.d/networking/red
#etc/rc.d/init.d/networking/red.down
etc/rc.d/init.d/networking/red.down/10-ipsec
etc/rc.d/init.d/networking/red.down/10-miniupnpd
etc/rc.d/init.d/networking/red.down/10-ovpn
etc/rc.d/init.d/networking/red.down/10-static-routes
etc/rc.d/init.d/networking/red.down/20-firewall
etc/rc.d/init.d/networking/red.down/99-beep
#etc/rc.d/init.d/networking/red.up
etc/rc.d/init.d/networking/red.up/01-conntrack-cleanup
etc/rc.d/init.d/networking/red.up/10-miniupnpd
etc/rc.d/init.d/networking/red.up/10-multicast
etc/rc.d/init.d/networking/red.up/10-static-routes
etc/rc.d/init.d/networking/red.up/20-firewall
@@ -93,7 +91,6 @@ etc/rc.d/init.d/template
etc/rc.d/init.d/udev
etc/rc.d/init.d/udev_retry
etc/rc.d/init.d/unbound
etc/rc.d/init.d/upnpd
etc/rc.d/init.d/vnstat
etc/rc.d/init.d/waitdrives
etc/rc.d/init.d/wlanclient
@@ -114,7 +111,6 @@ etc/rc.d/rc0.d/K78suricata
etc/rc.d/rc0.d/K79leds
etc/rc.d/rc0.d/K80network
etc/rc.d/rc0.d/K82wlanclient
#etc/rc.d/rc0.d/K84bluetooth
#etc/rc.d/rc0.d/K85messagebus
etc/rc.d/rc0.d/K86unbound
etc/rc.d/rc0.d/K87acpid
@@ -131,7 +127,6 @@ etc/rc.d/rc3.d/S11unbound
etc/rc.d/rc3.d/S12acpid
etc/rc.d/rc3.d/S15fireinfo
#etc/rc.d/rc3.d/S15messagebus
#etc/rc.d/rc3.d/S16bluetooth
#etc/rc.d/rc3.d/S18cpufreq
etc/rc.d/rc3.d/S19smartenabler
etc/rc.d/rc3.d/S19wlanclient
@@ -165,7 +160,6 @@ etc/rc.d/rc6.d/K78suricata
etc/rc.d/rc6.d/K79leds
etc/rc.d/rc6.d/K80network
etc/rc.d/rc6.d/K82wlanclient
#etc/rc.d/rc6.d/K84bluetooth
#etc/rc.d/rc6.d/K85messagebus
etc/rc.d/rc6.d/K86unbound
etc/rc.d/rc6.d/K87acpid

View File

@@ -422,6 +422,7 @@ srv/web/ipfire/html/captive
#srv/web/ipfire/manual/getting-started.html
#srv/web/ipfire/manual/getting-started.html.en
#srv/web/ipfire/manual/getting-started.html.fr.utf8
#srv/web/ipfire/manual/getting-started.html.ru.utf8
#srv/web/ipfire/manual/glossary.html
#srv/web/ipfire/manual/glossary.html.de
#srv/web/ipfire/manual/glossary.html.en
@@ -545,6 +546,7 @@ srv/web/ipfire/html/captive
#srv/web/ipfire/manual/index.html.ja.utf8
#srv/web/ipfire/manual/index.html.ko.euc-kr
#srv/web/ipfire/manual/index.html.pt-br
#srv/web/ipfire/manual/index.html.ru.utf8
#srv/web/ipfire/manual/index.html.tr.utf8
#srv/web/ipfire/manual/index.html.zh-cn.utf8
#srv/web/ipfire/manual/install.html
@@ -1174,7 +1176,6 @@ srv/web/ipfire/html/captive
#srv/web/ipfire/manual/new_features_2_0.html.ja.utf8
#srv/web/ipfire/manual/new_features_2_0.html.ko.euc-kr
#srv/web/ipfire/manual/new_features_2_0.html.pt-br
#srv/web/ipfire/manual/new_features_2_0.html.ru.koi8-r
#srv/web/ipfire/manual/new_features_2_0.html.tr.utf8
#srv/web/ipfire/manual/new_features_2_2.html
#srv/web/ipfire/manual/new_features_2_2.html.en
@@ -1515,6 +1516,7 @@ usr/bin/htpasswd
#usr/include/apache/http_main.h
#usr/include/apache/http_protocol.h
#usr/include/apache/http_request.h
#usr/include/apache/http_ssl.h
#usr/include/apache/http_vhost.h
#usr/include/apache/httpd.h
#usr/include/apache/mod_auth.h

View File

@@ -46,14 +46,12 @@ etc/rc.d/init.d/networking/orange
etc/rc.d/init.d/networking/red
#etc/rc.d/init.d/networking/red.down
etc/rc.d/init.d/networking/red.down/10-ipsec
etc/rc.d/init.d/networking/red.down/10-miniupnpd
etc/rc.d/init.d/networking/red.down/10-ovpn
etc/rc.d/init.d/networking/red.down/10-static-routes
etc/rc.d/init.d/networking/red.down/20-firewall
etc/rc.d/init.d/networking/red.down/99-beep
#etc/rc.d/init.d/networking/red.up
etc/rc.d/init.d/networking/red.up/01-conntrack-cleanup
etc/rc.d/init.d/networking/red.up/10-miniupnpd
etc/rc.d/init.d/networking/red.up/10-multicast
etc/rc.d/init.d/networking/red.up/10-static-routes
etc/rc.d/init.d/networking/red.up/20-firewall
@@ -93,7 +91,6 @@ etc/rc.d/init.d/template
etc/rc.d/init.d/udev
etc/rc.d/init.d/udev_retry
etc/rc.d/init.d/unbound
etc/rc.d/init.d/upnpd
etc/rc.d/init.d/vnstat
etc/rc.d/init.d/waitdrives
etc/rc.d/init.d/wlanclient
@@ -114,7 +111,6 @@ etc/rc.d/rc0.d/K78suricata
etc/rc.d/rc0.d/K79leds
etc/rc.d/rc0.d/K80network
etc/rc.d/rc0.d/K82wlanclient
#etc/rc.d/rc0.d/K84bluetooth
#etc/rc.d/rc0.d/K85messagebus
etc/rc.d/rc0.d/K86unbound
etc/rc.d/rc0.d/K87acpid
@@ -131,7 +127,6 @@ etc/rc.d/rc3.d/S11unbound
etc/rc.d/rc3.d/S12acpid
etc/rc.d/rc3.d/S15fireinfo
#etc/rc.d/rc3.d/S15messagebus
#etc/rc.d/rc3.d/S16bluetooth
#etc/rc.d/rc3.d/S18cpufreq
etc/rc.d/rc3.d/S19smartenabler
etc/rc.d/rc3.d/S19wlanclient
@@ -165,7 +160,6 @@ etc/rc.d/rc6.d/K78suricata
etc/rc.d/rc6.d/K79leds
etc/rc.d/rc6.d/K80network
etc/rc.d/rc6.d/K82wlanclient
#etc/rc.d/rc6.d/K84bluetooth
#etc/rc.d/rc6.d/K85messagebus
etc/rc.d/rc6.d/K86unbound
etc/rc.d/rc6.d/K87acpid

View File

@@ -272,8 +272,8 @@ usr/lib/libbind9.so.161
usr/lib/libbind9.so.161.0.4
#usr/lib/libdns.la
#usr/lib/libdns.so
usr/lib/libdns.so.1113
usr/lib/libdns.so.1113.0.2
usr/lib/libdns.so.1115
usr/lib/libdns.so.1115.0.0
#usr/lib/libisc.la
#usr/lib/libisc.so
usr/lib/libisc.so.1107

View File

@@ -184,8 +184,6 @@ var/ipfire/time
var/ipfire/updatexlrator
var/ipfire/updatexlrator/autocheck
var/ipfire/updatexlrator/bin
var/ipfire/upnp
#var/ipfire/upnp/settings
var/ipfire/urlfilter
#var/ipfire/urlfilter/autoupdate
#var/ipfire/urlfilter/bin

View File

@@ -1,24 +1,24 @@
#usr/lib/conntrack-tools
#usr/lib/conntrack-tools/ct_helper_amanda.la
usr/lib/conntrack-tools/ct_helper_amanda.so
#usr/lib/conntrack-tools/ct_helper_amanda.so
#usr/lib/conntrack-tools/ct_helper_dhcpv6.la
#usr/lib/conntrack-tools/ct_helper_dhcpv6.so
#usr/lib/conntrack-tools/ct_helper_ftp.la
usr/lib/conntrack-tools/ct_helper_ftp.so
#usr/lib/conntrack-tools/ct_helper_ftp.so
#usr/lib/conntrack-tools/ct_helper_mdns.la
usr/lib/conntrack-tools/ct_helper_mdns.so
#usr/lib/conntrack-tools/ct_helper_mdns.so
#usr/lib/conntrack-tools/ct_helper_rpc.la
usr/lib/conntrack-tools/ct_helper_rpc.so
#usr/lib/conntrack-tools/ct_helper_rpc.so
#usr/lib/conntrack-tools/ct_helper_sane.la
usr/lib/conntrack-tools/ct_helper_sane.so
#usr/lib/conntrack-tools/ct_helper_sane.so
#usr/lib/conntrack-tools/ct_helper_slp.la
usr/lib/conntrack-tools/ct_helper_slp.so
#usr/lib/conntrack-tools/ct_helper_slp.so
#usr/lib/conntrack-tools/ct_helper_ssdp.la
usr/lib/conntrack-tools/ct_helper_ssdp.so
#usr/lib/conntrack-tools/ct_helper_ssdp.so
#usr/lib/conntrack-tools/ct_helper_tftp.la
usr/lib/conntrack-tools/ct_helper_tftp.so
#usr/lib/conntrack-tools/ct_helper_tftp.so
#usr/lib/conntrack-tools/ct_helper_tns.la
usr/lib/conntrack-tools/ct_helper_tns.so
#usr/lib/conntrack-tools/ct_helper_tns.so
usr/sbin/conntrack
usr/sbin/conntrackd
usr/sbin/nfct

View File

@@ -113,6 +113,7 @@ usr/lib/libcurl.so.4.7.0
#usr/share/man/man3/CURLOPT_AWS_SIGV4.3
#usr/share/man/man3/CURLOPT_BUFFERSIZE.3
#usr/share/man/man3/CURLOPT_CAINFO.3
#usr/share/man/man3/CURLOPT_CAINFO_BLOB.3
#usr/share/man/man3/CURLOPT_CAPATH.3
#usr/share/man/man3/CURLOPT_CERTINFO.3
#usr/share/man/man3/CURLOPT_CHUNK_BGN_FUNCTION.3
@@ -265,6 +266,7 @@ usr/lib/libcurl.so.4.7.0
#usr/share/man/man3/CURLOPT_PROXYUSERNAME.3
#usr/share/man/man3/CURLOPT_PROXYUSERPWD.3
#usr/share/man/man3/CURLOPT_PROXY_CAINFO.3
#usr/share/man/man3/CURLOPT_PROXY_CAINFO_BLOB.3
#usr/share/man/man3/CURLOPT_PROXY_CAPATH.3
#usr/share/man/man3/CURLOPT_PROXY_CRLFILE.3
#usr/share/man/man3/CURLOPT_PROXY_ISSUERCERT.3

View File

@@ -1,2 +1,3 @@
usr/sbin/ethtool
#usr/share/bash-completion/completions/ethtool
#usr/share/man/man8/ethtool.8

View File

@@ -2,22 +2,22 @@
#usr/include/expat.h
#usr/include/expat_config.h
#usr/include/expat_external.h
#usr/lib/cmake/expat-2.3.0
#usr/lib/cmake/expat-2.3.0/expat-config-version.cmake
#usr/lib/cmake/expat-2.3.0/expat-config.cmake
#usr/lib/cmake/expat-2.3.0/expat-noconfig.cmake
#usr/lib/cmake/expat-2.3.0/expat.cmake
#usr/lib/cmake/expat-2.4.1
#usr/lib/cmake/expat-2.4.1/expat-config-version.cmake
#usr/lib/cmake/expat-2.4.1/expat-config.cmake
#usr/lib/cmake/expat-2.4.1/expat-noconfig.cmake
#usr/lib/cmake/expat-2.4.1/expat.cmake
#usr/lib/libexpat.a
#usr/lib/libexpat.la
#usr/lib/libexpat.so
usr/lib/libexpat.so.1
usr/lib/libexpat.so.1.7.0
usr/lib/libexpat.so.1.8.1
#usr/lib/pkgconfig/expat.pc
#usr/share/doc/expat
#usr/share/doc/expat-2.3.0
#usr/share/doc/expat-2.3.0/expat.png
#usr/share/doc/expat-2.3.0/reference.html
#usr/share/doc/expat-2.3.0/style.css
#usr/share/doc/expat-2.3.0/valid-xhtml10.png
#usr/share/doc/expat-2.4.1
#usr/share/doc/expat-2.4.1/ok.min.css
#usr/share/doc/expat-2.4.1/reference.html
#usr/share/doc/expat-2.4.1/style.css
#usr/share/doc/expat-2.4.1/valid-xhtml10.png
#usr/share/doc/expat/AUTHORS
#usr/share/doc/expat/changelog

View File

@@ -1,4 +0,0 @@
#usr/man/man5/fb.modes.5
#usr/man/man8/fbset.8
usr/sbin/fbset
etc/fb.modes

View File

@@ -1,27 +1,13 @@
usr/bin/sendprofile
usr/lib/python2.7/site-packages/fireinfo
usr/lib/python2.7/site-packages/fireinfo/__init__.py
usr/lib/python2.7/site-packages/fireinfo/__init__.pyc
usr/lib/python2.7/site-packages/fireinfo/__init__.pyo
#usr/lib/python2.7/site-packages/fireinfo/_fireinfo.la
usr/lib/python2.7/site-packages/fireinfo/_fireinfo.so
usr/lib/python2.7/site-packages/fireinfo/bios.py
usr/lib/python2.7/site-packages/fireinfo/bios.pyc
usr/lib/python2.7/site-packages/fireinfo/bios.pyo
usr/lib/python2.7/site-packages/fireinfo/cpu.py
usr/lib/python2.7/site-packages/fireinfo/cpu.pyc
usr/lib/python2.7/site-packages/fireinfo/cpu.pyo
usr/lib/python2.7/site-packages/fireinfo/device.py
usr/lib/python2.7/site-packages/fireinfo/device.pyc
usr/lib/python2.7/site-packages/fireinfo/device.pyo
usr/lib/python2.7/site-packages/fireinfo/hypervisor.py
usr/lib/python2.7/site-packages/fireinfo/hypervisor.pyc
usr/lib/python2.7/site-packages/fireinfo/hypervisor.pyo
usr/lib/python2.7/site-packages/fireinfo/network.py
usr/lib/python2.7/site-packages/fireinfo/network.pyc
usr/lib/python2.7/site-packages/fireinfo/network.pyo
usr/lib/python2.7/site-packages/fireinfo/system.py
usr/lib/python2.7/site-packages/fireinfo/system.pyc
usr/lib/python2.7/site-packages/fireinfo/system.pyo
usr/share/doc/fireinfo
usr/share/doc/fireinfo/COPYING
#usr/lib/python3.8/site-packages/fireinfo
usr/lib/python3.8/site-packages/fireinfo/__init__.py
#usr/lib/python3.8/site-packages/fireinfo/_fireinfo.la
usr/lib/python3.8/site-packages/fireinfo/_fireinfo.so
usr/lib/python3.8/site-packages/fireinfo/bios.py
usr/lib/python3.8/site-packages/fireinfo/cpu.py
usr/lib/python3.8/site-packages/fireinfo/device.py
usr/lib/python3.8/site-packages/fireinfo/hypervisor.py
usr/lib/python3.8/site-packages/fireinfo/network.py
usr/lib/python3.8/site-packages/fireinfo/system.py
#usr/share/doc/fireinfo
#usr/share/doc/fireinfo/COPYING

View File

@@ -12,7 +12,7 @@ usr/bin/fusermount3
#usr/include/fuse3/fuse_opt.h
#usr/lib/libfuse3.so
usr/lib/libfuse3.so.3
usr/lib/libfuse3.so.3.10.3
usr/lib/libfuse3.so.3.10.4
#usr/lib/pkgconfig/fuse3.pc
#usr/share/man/man1/fusermount3.1
#usr/share/man/man8/mount.fuse3.8

View File

@@ -294,19 +294,19 @@
#usr/lib/glib-2.0/include/glibconfig.h
#usr/lib/libgio-2.0.so
usr/lib/libgio-2.0.so.0
usr/lib/libgio-2.0.so.0.6800.1
usr/lib/libgio-2.0.so.0.6800.3
#usr/lib/libglib-2.0.so
usr/lib/libglib-2.0.so.0
usr/lib/libglib-2.0.so.0.6800.1
usr/lib/libglib-2.0.so.0.6800.3
#usr/lib/libgmodule-2.0.so
usr/lib/libgmodule-2.0.so.0
usr/lib/libgmodule-2.0.so.0.6800.1
usr/lib/libgmodule-2.0.so.0.6800.3
#usr/lib/libgobject-2.0.so
usr/lib/libgobject-2.0.so.0
usr/lib/libgobject-2.0.so.0.6800.1
usr/lib/libgobject-2.0.so.0.6800.3
#usr/lib/libgthread-2.0.so
usr/lib/libgthread-2.0.so.0
usr/lib/libgthread-2.0.so.0.6800.1
usr/lib/libgthread-2.0.so.0.6800.3
#usr/lib/pkgconfig/gio-2.0.pc
#usr/lib/pkgconfig/gio-unix-2.0.pc
#usr/lib/pkgconfig/glib-2.0.pc
@@ -326,8 +326,8 @@ usr/lib/libgthread-2.0.so.0.6800.1
#usr/share/gdb/auto-load
#usr/share/gdb/auto-load/usr
#usr/share/gdb/auto-load/usr/lib
#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.6800.1-gdb.py
#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.6800.1-gdb.py
#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.6800.3-gdb.py
#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.6800.3-gdb.py
#usr/share/gettext/its
#usr/share/gettext/its/gschema.its
#usr/share/gettext/its/gschema.loc

View File

@@ -33,7 +33,7 @@ usr/lib/libgnutls-dane.so.0.4.1
#usr/lib/libgnutls.la
#usr/lib/libgnutls.so
usr/lib/libgnutls.so.30
usr/lib/libgnutls.so.30.28.0
usr/lib/libgnutls.so.30.28.2
#usr/lib/libgnutlsxx.la
#usr/lib/libgnutlsxx.so
usr/lib/libgnutlsxx.so.28

View File

@@ -5,6 +5,7 @@ usr/sbin/vpddecode
#usr/share/doc/dmidecode
#usr/share/doc/dmidecode/AUTHORS
#usr/share/doc/dmidecode/CHANGELOG
#usr/share/doc/dmidecode/NEWS
#usr/share/doc/dmidecode/README
#usr/share/man/man8/biosdecode.8
#usr/share/man/man8/dmidecode.8

View File

@@ -46,14 +46,12 @@ etc/rc.d/init.d/networking/orange
etc/rc.d/init.d/networking/red
#etc/rc.d/init.d/networking/red.down
etc/rc.d/init.d/networking/red.down/10-ipsec
etc/rc.d/init.d/networking/red.down/10-miniupnpd
etc/rc.d/init.d/networking/red.down/10-ovpn
etc/rc.d/init.d/networking/red.down/10-static-routes
etc/rc.d/init.d/networking/red.down/20-firewall
etc/rc.d/init.d/networking/red.down/99-beep
#etc/rc.d/init.d/networking/red.up
etc/rc.d/init.d/networking/red.up/01-conntrack-cleanup
etc/rc.d/init.d/networking/red.up/10-miniupnpd
etc/rc.d/init.d/networking/red.up/10-multicast
etc/rc.d/init.d/networking/red.up/10-static-routes
etc/rc.d/init.d/networking/red.up/20-firewall
@@ -92,7 +90,6 @@ etc/rc.d/init.d/template
etc/rc.d/init.d/udev
etc/rc.d/init.d/udev_retry
etc/rc.d/init.d/unbound
etc/rc.d/init.d/upnpd
etc/rc.d/init.d/vnstat
etc/rc.d/init.d/waitdrives
etc/rc.d/init.d/wlanclient
@@ -113,7 +110,6 @@ etc/rc.d/rc0.d/K78suricata
etc/rc.d/rc0.d/K79leds
etc/rc.d/rc0.d/K80network
etc/rc.d/rc0.d/K82wlanclient
#etc/rc.d/rc0.d/K84bluetooth
#etc/rc.d/rc0.d/K85messagebus
etc/rc.d/rc0.d/K86unbound
etc/rc.d/rc0.d/K87acpid
@@ -129,7 +125,6 @@ etc/rc.d/rc3.d/S10sysklogd
etc/rc.d/rc3.d/S12acpid
etc/rc.d/rc3.d/S15fireinfo
#etc/rc.d/rc3.d/S15messagebus
#etc/rc.d/rc3.d/S16bluetooth
#etc/rc.d/rc3.d/S18cpufreq
etc/rc.d/rc3.d/S19smartenabler
etc/rc.d/rc3.d/S19wlanclient
@@ -164,7 +159,6 @@ etc/rc.d/rc6.d/K78suricata
etc/rc.d/rc6.d/K79leds
etc/rc.d/rc6.d/K80network
etc/rc.d/rc6.d/K82wlanclient
#etc/rc.d/rc6.d/K84bluetooth
#etc/rc.d/rc6.d/K85messagebus
etc/rc.d/rc6.d/K86unbound
etc/rc.d/rc6.d/K87acpid

View File

@@ -67,6 +67,7 @@ lib/firmware/intel-ucode/06-4d-08
lib/firmware/intel-ucode/06-4e-03
lib/firmware/intel-ucode/06-55-03
lib/firmware/intel-ucode/06-55-04
lib/firmware/intel-ucode/06-55-05
lib/firmware/intel-ucode/06-55-06
lib/firmware/intel-ucode/06-55-07
lib/firmware/intel-ucode/06-55-0b
@@ -80,14 +81,23 @@ lib/firmware/intel-ucode/06-5c-0a
lib/firmware/intel-ucode/06-5e-03
lib/firmware/intel-ucode/06-5f-01
lib/firmware/intel-ucode/06-66-03
lib/firmware/intel-ucode/06-6a-05
lib/firmware/intel-ucode/06-6a-06
lib/firmware/intel-ucode/06-7a-01
lib/firmware/intel-ucode/06-7a-08
lib/firmware/intel-ucode/06-7e-05
lib/firmware/intel-ucode/06-86-04
lib/firmware/intel-ucode/06-86-05
lib/firmware/intel-ucode/06-8a-01
lib/firmware/intel-ucode/06-8c-01
lib/firmware/intel-ucode/06-8c-02
lib/firmware/intel-ucode/06-8d-01
lib/firmware/intel-ucode/06-8e-09
lib/firmware/intel-ucode/06-8e-0a
lib/firmware/intel-ucode/06-8e-0b
lib/firmware/intel-ucode/06-8e-0c
lib/firmware/intel-ucode/06-96-01
lib/firmware/intel-ucode/06-9c-00
lib/firmware/intel-ucode/06-9e-09
lib/firmware/intel-ucode/06-9e-0a
lib/firmware/intel-ucode/06-9e-0b
@@ -98,6 +108,7 @@ lib/firmware/intel-ucode/06-a5-03
lib/firmware/intel-ucode/06-a5-05
lib/firmware/intel-ucode/06-a6-00
lib/firmware/intel-ucode/06-a6-01
lib/firmware/intel-ucode/06-a7-01
lib/firmware/intel-ucode/0f-00-07
lib/firmware/intel-ucode/0f-00-0a
lib/firmware/intel-ucode/0f-01-02

View File

@@ -1,8 +1,8 @@
usr/bin/intltool-extract
usr/bin/intltool-merge
usr/bin/intltool-prepare
usr/bin/intltool-update
usr/bin/intltoolize
#usr/bin/intltool-extract
#usr/bin/intltool-merge
#usr/bin/intltool-prepare
#usr/bin/intltool-update
#usr/bin/intltoolize
#usr/share/aclocal/intltool.m4
#usr/share/intltool
#usr/share/intltool/Makefile.in.in

View File

@@ -1,3 +1,15 @@
bin/ping
#etc/rc.d/init.d/ninfod.sh
#usr/bin/arping
#usr/bin/clockdiff
usr/bin/ping
usr/bin/tracepath
#usr/sbin/ninfod
#usr/sbin/rdisc
#usr/share/locale/de/LC_MESSAGES/iputils.mo
#usr/share/locale/fr/LC_MESSAGES/iputils.mo
#usr/share/locale/ja/LC_MESSAGES/iputils.mo
#usr/share/locale/pt_BR/LC_MESSAGES/iputils.mo
#usr/share/locale/tr/LC_MESSAGES/iputils.mo
#usr/share/locale/uk/LC_MESSAGES/iputils.mo
#usr/share/locale/zh_CN/LC_MESSAGES/iputils.mo

View File

@@ -1,10 +1,10 @@
#lib/libcap.a
lib/libcap.so.2
lib/libcap.so.2.49
lib/libcap.so.2.50
#lib/libpsx.a
#lib/libpsx.so
#lib/libpsx.so.2
#lib/libpsx.so.2.49
#lib/libpsx.so.2.50
#lib/pkgconfig/libcap.pc
#lib/pkgconfig/libpsx.pc
lib/security/pam_cap.so

View File

@@ -4,7 +4,7 @@
#usr/lib/libedit.la
#usr/lib/libedit.so
usr/lib/libedit.so.0
usr/lib/libedit.so.0.0.65
usr/lib/libedit.so.0.0.66
#usr/lib/pkgconfig/libedit.pc
#usr/share/man/man3/editline.3
#usr/share/man/man3/el_deletestr.3

View File

@@ -57,7 +57,10 @@ etc/libnl/pktloc
#usr/include/libnl3/netlink/object.h
#usr/include/libnl3/netlink/route
#usr/include/libnl3/netlink/route/act
#usr/include/libnl3/netlink/route/act/gact.h
#usr/include/libnl3/netlink/route/act/mirred.h
#usr/include/libnl3/netlink/route/act/skbedit.h
#usr/include/libnl3/netlink/route/act/vlan.h
#usr/include/libnl3/netlink/route/action.h
#usr/include/libnl3/netlink/route/addr.h
#usr/include/libnl3/netlink/route/class.h
@@ -72,6 +75,7 @@ etc/libnl/pktloc
#usr/include/libnl3/netlink/route/cls/ematch/nbyte.h
#usr/include/libnl3/netlink/route/cls/ematch/text.h
#usr/include/libnl3/netlink/route/cls/fw.h
#usr/include/libnl3/netlink/route/cls/matchall.h
#usr/include/libnl3/netlink/route/cls/police.h
#usr/include/libnl3/netlink/route/cls/u32.h
#usr/include/libnl3/netlink/route/link
@@ -80,19 +84,29 @@ etc/libnl/pktloc
#usr/include/libnl3/netlink/route/link/bonding.h
#usr/include/libnl3/netlink/route/link/bridge.h
#usr/include/libnl3/netlink/route/link/can.h
#usr/include/libnl3/netlink/route/link/geneve.h
#usr/include/libnl3/netlink/route/link/inet.h
#usr/include/libnl3/netlink/route/link/inet6.h
#usr/include/libnl3/netlink/route/link/info-api.h
#usr/include/libnl3/netlink/route/link/ip6tnl.h
#usr/include/libnl3/netlink/route/link/ipgre.h
#usr/include/libnl3/netlink/route/link/ipip.h
#usr/include/libnl3/netlink/route/link/ipvlan.h
#usr/include/libnl3/netlink/route/link/ipvti.h
#usr/include/libnl3/netlink/route/link/macsec.h
#usr/include/libnl3/netlink/route/link/macvlan.h
#usr/include/libnl3/netlink/route/link/macvtap.h
#usr/include/libnl3/netlink/route/link/ppp.h
#usr/include/libnl3/netlink/route/link/sit.h
#usr/include/libnl3/netlink/route/link/sriov.h
#usr/include/libnl3/netlink/route/link/veth.h
#usr/include/libnl3/netlink/route/link/vlan.h
#usr/include/libnl3/netlink/route/link/vrf.h
#usr/include/libnl3/netlink/route/link/vxlan.h
#usr/include/libnl3/netlink/route/link/xfrmi.h
#usr/include/libnl3/netlink/route/neighbour.h
#usr/include/libnl3/netlink/route/neightbl.h
#usr/include/libnl3/netlink/route/netconf.h
#usr/include/libnl3/netlink/route/nexthop.h
#usr/include/libnl3/netlink/route/pktloc.h
#usr/include/libnl3/netlink/route/qdisc
@@ -101,7 +115,9 @@ etc/libnl/pktloc
#usr/include/libnl3/netlink/route/qdisc/dsmark.h
#usr/include/libnl3/netlink/route/qdisc/fifo.h
#usr/include/libnl3/netlink/route/qdisc/fq_codel.h
#usr/include/libnl3/netlink/route/qdisc/hfsc.h
#usr/include/libnl3/netlink/route/qdisc/htb.h
#usr/include/libnl3/netlink/route/qdisc/mqprio.h
#usr/include/libnl3/netlink/route/qdisc/netem.h
#usr/include/libnl3/netlink/route/qdisc/plug.h
#usr/include/libnl3/netlink/route/qdisc/prio.h
@@ -117,73 +133,86 @@ etc/libnl/pktloc
#usr/include/libnl3/netlink/types.h
#usr/include/libnl3/netlink/utils.h
#usr/include/libnl3/netlink/version.h
#usr/include/libnl3/netlink/xfrm
#usr/include/libnl3/netlink/xfrm/ae.h
#usr/include/libnl3/netlink/xfrm/lifetime.h
#usr/include/libnl3/netlink/xfrm/sa.h
#usr/include/libnl3/netlink/xfrm/selector.h
#usr/include/libnl3/netlink/xfrm/sp.h
#usr/include/libnl3/netlink/xfrm/template.h
#usr/lib/libnl
#usr/lib/libnl-3.a
#usr/lib/libnl-3.la
#usr/lib/libnl-3.so
usr/lib/libnl-3.so.200
usr/lib/libnl-3.so.200.20.0
#usr/lib/libnl-cli-3.a
usr/lib/libnl-3.so.200.26.0
#usr/lib/libnl-cli-3.la
#usr/lib/libnl-cli-3.so
usr/lib/libnl-cli-3.so.200
usr/lib/libnl-cli-3.so.200.20.0
#usr/lib/libnl-genl-3.a
usr/lib/libnl-cli-3.so.200.26.0
#usr/lib/libnl-genl-3.la
#usr/lib/libnl-genl-3.so
usr/lib/libnl-genl-3.so.200
usr/lib/libnl-genl-3.so.200.20.0
#usr/lib/libnl-idiag-3.a
usr/lib/libnl-genl-3.so.200.26.0
#usr/lib/libnl-idiag-3.la
#usr/lib/libnl-idiag-3.so
usr/lib/libnl-idiag-3.so.200
usr/lib/libnl-idiag-3.so.200.20.0
#usr/lib/libnl-nf-3.a
usr/lib/libnl-idiag-3.so.200.26.0
#usr/lib/libnl-nf-3.la
#usr/lib/libnl-nf-3.so
usr/lib/libnl-nf-3.so.200
usr/lib/libnl-nf-3.so.200.20.0
#usr/lib/libnl-route-3.a
usr/lib/libnl-nf-3.so.200.26.0
#usr/lib/libnl-route-3.la
#usr/lib/libnl-route-3.so
usr/lib/libnl-route-3.so.200
usr/lib/libnl-route-3.so.200.20.0
usr/lib/libnl-route-3.so.200.26.0
#usr/lib/libnl-xfrm-3.la
#usr/lib/libnl-xfrm-3.so
usr/lib/libnl-xfrm-3.so.200
usr/lib/libnl-xfrm-3.so.200.26.0
#usr/lib/libnl/cli
#usr/lib/libnl/cli/cls
#usr/lib/libnl/cli/cls/basic.a
#usr/lib/libnl/cli/cls/basic.la
usr/lib/libnl/cli/cls/basic.so
#usr/lib/libnl/cli/cls/cgroup.a
#usr/lib/libnl/cli/cls/cgroup.la
usr/lib/libnl/cli/cls/cgroup.so
#usr/lib/libnl/cli/qdisc
#usr/lib/libnl/cli/qdisc/bfifo.a
#usr/lib/libnl/cli/qdisc/bfifo.la
usr/lib/libnl/cli/qdisc/bfifo.so
#usr/lib/libnl/cli/qdisc/blackhole.a
#usr/lib/libnl/cli/qdisc/blackhole.la
usr/lib/libnl/cli/qdisc/blackhole.so
#usr/lib/libnl/cli/qdisc/fq_codel.a
#usr/lib/libnl/cli/qdisc/fq_codel.la
usr/lib/libnl/cli/qdisc/fq_codel.so
#usr/lib/libnl/cli/qdisc/htb.a
#usr/lib/libnl/cli/qdisc/hfsc.la
#usr/lib/libnl/cli/qdisc/hfsc.so
#usr/lib/libnl/cli/qdisc/htb.la
usr/lib/libnl/cli/qdisc/htb.so
#usr/lib/libnl/cli/qdisc/ingress.a
#usr/lib/libnl/cli/qdisc/ingress.la
usr/lib/libnl/cli/qdisc/ingress.so
#usr/lib/libnl/cli/qdisc/pfifo.a
#usr/lib/libnl/cli/qdisc/pfifo.la
usr/lib/libnl/cli/qdisc/pfifo.so
#usr/lib/libnl/cli/qdisc/plug.a
#usr/lib/libnl/cli/qdisc/plug.la
usr/lib/libnl/cli/qdisc/plug.so
#usr/lib/pkgconfig/libnl-3.0.pc
#usr/lib/pkgconfig/libnl-cli-3.0.pc
#usr/lib/pkgconfig/libnl-genl-3.0.pc
#usr/lib/pkgconfig/libnl-idiag-3.0.pc
#usr/lib/pkgconfig/libnl-nf-3.0.pc
#usr/lib/pkgconfig/libnl-route-3.0.pc
#usr/lib/pkgconfig/libnl-xfrm-3.0.pc
#usr/sbin/genl-ctrl-list
#usr/sbin/idiag-socket-details
#usr/sbin/nf-ct-add
#usr/sbin/nf-ct-events
#usr/sbin/nf-ct-list
#usr/sbin/nf-exp-add
#usr/sbin/nf-exp-delete
#usr/sbin/nf-exp-list
#usr/sbin/nf-log
#usr/sbin/nf-monitor
#usr/sbin/nf-queue
#usr/sbin/nl-addr-add
#usr/sbin/nl-addr-delete
#usr/sbin/nl-addr-list
usr/sbin/nl-class-add
usr/sbin/nl-class-delete
usr/sbin/nl-class-list
@@ -191,11 +220,32 @@ usr/sbin/nl-classid-lookup
usr/sbin/nl-cls-add
usr/sbin/nl-cls-delete
usr/sbin/nl-cls-list
#usr/sbin/nl-fib-lookup
#usr/sbin/nl-link-enslave
#usr/sbin/nl-link-ifindex2name
usr/sbin/nl-link-list
#usr/sbin/nl-link-name2ifindex
#usr/sbin/nl-link-release
#usr/sbin/nl-link-set
#usr/sbin/nl-link-stats
#usr/sbin/nl-list-caches
#usr/sbin/nl-list-sockets
#usr/sbin/nl-monitor
#usr/sbin/nl-neigh-add
#usr/sbin/nl-neigh-delete
#usr/sbin/nl-neigh-list
#usr/sbin/nl-neightbl-list
usr/sbin/nl-pktloc-lookup
usr/sbin/nl-qdisc-add
usr/sbin/nl-qdisc-delete
usr/sbin/nl-qdisc-list
#usr/sbin/nl-route-add
#usr/sbin/nl-route-delete
#usr/sbin/nl-route-get
#usr/sbin/nl-route-list
#usr/sbin/nl-rule-list
#usr/sbin/nl-tctree-list
#usr/sbin/nl-util-addr
#usr/share/man/man8/genl-ctrl-list.8
#usr/share/man/man8/nl-classid-lookup.8
#usr/share/man/man8/nl-pktloc-lookup.8

View File

@@ -21,7 +21,7 @@
#usr/lib/libpcap.a
usr/lib/libpcap.so
usr/lib/libpcap.so.1
usr/lib/libpcap.so.1.10.0
usr/lib/libpcap.so.1.10.1
#usr/lib/pkgconfig/libpcap.pc
#usr/share/man/man1/pcap-config.1
#usr/share/man/man3/pcap.3pcap

View File

@@ -1,37 +0,0 @@
#usr/include/upnp
#usr/include/upnp/Callback.h
#usr/include/upnp/UpnpActionComplete.h
#usr/include/upnp/UpnpActionRequest.h
#usr/include/upnp/UpnpDiscovery.h
#usr/include/upnp/UpnpEvent.h
#usr/include/upnp/UpnpEventSubscribe.h
#usr/include/upnp/UpnpExtraHeaders.h
#usr/include/upnp/UpnpFileInfo.h
#usr/include/upnp/UpnpGlobal.h
#usr/include/upnp/UpnpInet.h
#usr/include/upnp/UpnpIntTypes.h
#usr/include/upnp/UpnpStateVarComplete.h
#usr/include/upnp/UpnpStateVarRequest.h
#usr/include/upnp/UpnpStdInt.h
#usr/include/upnp/UpnpString.h
#usr/include/upnp/UpnpSubscriptionRequest.h
#usr/include/upnp/UpnpUniStd.h
#usr/include/upnp/ithread.h
#usr/include/upnp/ixml.h
#usr/include/upnp/ixmldebug.h
#usr/include/upnp/list.h
#usr/include/upnp/upnp.h
#usr/include/upnp/upnpconfig.h
#usr/include/upnp/upnpdebug.h
#usr/include/upnp/upnptools.h
#usr/lib/libixml.a
#usr/lib/libixml.la
#usr/lib/libixml.so
usr/lib/libixml.so.11
usr/lib/libixml.so.11.0.1
#usr/lib/libupnp.a
#usr/lib/libupnp.la
#usr/lib/libupnp.so
usr/lib/libupnp.so.17
usr/lib/libupnp.so.17.0.6
#usr/lib/pkgconfig/libupnp.pc

View File

@@ -5,5 +5,5 @@ etc/udev/rules.d/23-usb.rules
#usr/lib/libusb-1.0.la
#usr/lib/libusb-1.0.so
usr/lib/libusb-1.0.so.0
usr/lib/libusb-1.0.so.0.2.0
usr/lib/libusb-1.0.so.0.3.0
#usr/lib/pkgconfig/libusb-1.0.pc

View File

@@ -29,7 +29,18 @@ lib/firmware/amd-ucode/microcode_amd_fam15h.bin
lib/firmware/amd-ucode/microcode_amd_fam16h.bin
lib/firmware/amd-ucode/microcode_amd_fam17h.bin
lib/firmware/amd/amd_sev_fam17h_model0xh.sbin
lib/firmware/amd/amd_sev_fam17h_model3xh.sbin
#lib/firmware/amdgpu
lib/firmware/amdgpu/arcturus_asd.bin
lib/firmware/amdgpu/arcturus_gpu_info.bin
lib/firmware/amdgpu/arcturus_mec.bin
lib/firmware/amdgpu/arcturus_mec2.bin
lib/firmware/amdgpu/arcturus_rlc.bin
lib/firmware/amdgpu/arcturus_sdma.bin
lib/firmware/amdgpu/arcturus_smc.bin
lib/firmware/amdgpu/arcturus_sos.bin
lib/firmware/amdgpu/arcturus_ta.bin
lib/firmware/amdgpu/arcturus_vcn.bin
lib/firmware/amdgpu/banks_k_2_smc.bin
lib/firmware/amdgpu/bonaire_ce.bin
lib/firmware/amdgpu/bonaire_k_smc.bin
@@ -65,6 +76,17 @@ lib/firmware/amdgpu/fiji_sdma1.bin
lib/firmware/amdgpu/fiji_smc.bin
lib/firmware/amdgpu/fiji_uvd.bin
lib/firmware/amdgpu/fiji_vce.bin
lib/firmware/amdgpu/green_sardine_asd.bin
lib/firmware/amdgpu/green_sardine_ce.bin
lib/firmware/amdgpu/green_sardine_dmcub.bin
lib/firmware/amdgpu/green_sardine_me.bin
lib/firmware/amdgpu/green_sardine_mec.bin
lib/firmware/amdgpu/green_sardine_mec2.bin
lib/firmware/amdgpu/green_sardine_pfp.bin
lib/firmware/amdgpu/green_sardine_rlc.bin
lib/firmware/amdgpu/green_sardine_sdma.bin
lib/firmware/amdgpu/green_sardine_ta.bin
lib/firmware/amdgpu/green_sardine_vcn.bin
lib/firmware/amdgpu/hainan_ce.bin
lib/firmware/amdgpu/hainan_k_smc.bin
lib/firmware/amdgpu/hainan_mc.bin
@@ -126,6 +148,21 @@ lib/firmware/amdgpu/navi10_smc.bin
lib/firmware/amdgpu/navi10_sos.bin
lib/firmware/amdgpu/navi10_ta.bin
lib/firmware/amdgpu/navi10_vcn.bin
lib/firmware/amdgpu/navi12_asd.bin
lib/firmware/amdgpu/navi12_ce.bin
lib/firmware/amdgpu/navi12_dmcu.bin
lib/firmware/amdgpu/navi12_gpu_info.bin
lib/firmware/amdgpu/navi12_me.bin
lib/firmware/amdgpu/navi12_mec.bin
lib/firmware/amdgpu/navi12_mec2.bin
lib/firmware/amdgpu/navi12_pfp.bin
lib/firmware/amdgpu/navi12_rlc.bin
lib/firmware/amdgpu/navi12_sdma.bin
lib/firmware/amdgpu/navi12_sdma1.bin
lib/firmware/amdgpu/navi12_smc.bin
lib/firmware/amdgpu/navi12_sos.bin
lib/firmware/amdgpu/navi12_ta.bin
lib/firmware/amdgpu/navi12_vcn.bin
lib/firmware/amdgpu/navi14_asd.bin
lib/firmware/amdgpu/navi14_ce.bin
lib/firmware/amdgpu/navi14_ce_wks.bin
@@ -145,6 +182,18 @@ lib/firmware/amdgpu/navi14_smc.bin
lib/firmware/amdgpu/navi14_sos.bin
lib/firmware/amdgpu/navi14_ta.bin
lib/firmware/amdgpu/navi14_vcn.bin
lib/firmware/amdgpu/navy_flounder_ce.bin
lib/firmware/amdgpu/navy_flounder_dmcub.bin
lib/firmware/amdgpu/navy_flounder_me.bin
lib/firmware/amdgpu/navy_flounder_mec.bin
lib/firmware/amdgpu/navy_flounder_mec2.bin
lib/firmware/amdgpu/navy_flounder_pfp.bin
lib/firmware/amdgpu/navy_flounder_rlc.bin
lib/firmware/amdgpu/navy_flounder_sdma.bin
lib/firmware/amdgpu/navy_flounder_smc.bin
lib/firmware/amdgpu/navy_flounder_sos.bin
lib/firmware/amdgpu/navy_flounder_ta.bin
lib/firmware/amdgpu/navy_flounder_vcn.bin
lib/firmware/amdgpu/oland_ce.bin
lib/firmware/amdgpu/oland_k_smc.bin
lib/firmware/amdgpu/oland_mc.bin
@@ -152,6 +201,7 @@ lib/firmware/amdgpu/oland_me.bin
lib/firmware/amdgpu/oland_pfp.bin
lib/firmware/amdgpu/oland_rlc.bin
lib/firmware/amdgpu/oland_smc.bin
lib/firmware/amdgpu/oland_uvd.bin
lib/firmware/amdgpu/picasso_asd.bin
lib/firmware/amdgpu/picasso_ce.bin
lib/firmware/amdgpu/picasso_gpu_info.bin
@@ -171,6 +221,7 @@ lib/firmware/amdgpu/pitcairn_me.bin
lib/firmware/amdgpu/pitcairn_pfp.bin
lib/firmware/amdgpu/pitcairn_rlc.bin
lib/firmware/amdgpu/pitcairn_smc.bin
lib/firmware/amdgpu/pitcairn_uvd.bin
lib/firmware/amdgpu/polaris10_ce.bin
lib/firmware/amdgpu/polaris10_ce_2.bin
lib/firmware/amdgpu/polaris10_k2_smc.bin
@@ -213,6 +264,7 @@ lib/firmware/amdgpu/polaris11_smc.bin
lib/firmware/amdgpu/polaris11_smc_sk.bin
lib/firmware/amdgpu/polaris11_uvd.bin
lib/firmware/amdgpu/polaris11_vce.bin
lib/firmware/amdgpu/polaris12_32_mc.bin
lib/firmware/amdgpu/polaris12_ce.bin
lib/firmware/amdgpu/polaris12_ce_2.bin
lib/firmware/amdgpu/polaris12_k_mc.bin
@@ -266,8 +318,21 @@ lib/firmware/amdgpu/renoir_mec2.bin
lib/firmware/amdgpu/renoir_pfp.bin
lib/firmware/amdgpu/renoir_rlc.bin
lib/firmware/amdgpu/renoir_sdma.bin
lib/firmware/amdgpu/renoir_ta.bin
lib/firmware/amdgpu/renoir_vcn.bin
lib/firmware/amdgpu/si58_mc.bin
lib/firmware/amdgpu/sienna_cichlid_ce.bin
lib/firmware/amdgpu/sienna_cichlid_dmcub.bin
lib/firmware/amdgpu/sienna_cichlid_me.bin
lib/firmware/amdgpu/sienna_cichlid_mec.bin
lib/firmware/amdgpu/sienna_cichlid_mec2.bin
lib/firmware/amdgpu/sienna_cichlid_pfp.bin
lib/firmware/amdgpu/sienna_cichlid_rlc.bin
lib/firmware/amdgpu/sienna_cichlid_sdma.bin
lib/firmware/amdgpu/sienna_cichlid_smc.bin
lib/firmware/amdgpu/sienna_cichlid_sos.bin
lib/firmware/amdgpu/sienna_cichlid_ta.bin
lib/firmware/amdgpu/sienna_cichlid_vcn.bin
lib/firmware/amdgpu/stoney_ce.bin
lib/firmware/amdgpu/stoney_me.bin
lib/firmware/amdgpu/stoney_mec.bin
@@ -283,6 +348,7 @@ lib/firmware/amdgpu/tahiti_me.bin
lib/firmware/amdgpu/tahiti_pfp.bin
lib/firmware/amdgpu/tahiti_rlc.bin
lib/firmware/amdgpu/tahiti_smc.bin
lib/firmware/amdgpu/tahiti_uvd.bin
lib/firmware/amdgpu/tonga_ce.bin
lib/firmware/amdgpu/tonga_k_smc.bin
lib/firmware/amdgpu/tonga_mc.bin
@@ -347,6 +413,7 @@ lib/firmware/amdgpu/vega20_sdma.bin
lib/firmware/amdgpu/vega20_sdma1.bin
lib/firmware/amdgpu/vega20_smc.bin
lib/firmware/amdgpu/vega20_sos.bin
lib/firmware/amdgpu/vega20_ta.bin
lib/firmware/amdgpu/vega20_uvd.bin
lib/firmware/amdgpu/vega20_vce.bin
lib/firmware/amdgpu/vegam_ce.bin
@@ -367,6 +434,7 @@ lib/firmware/amdgpu/verde_me.bin
lib/firmware/amdgpu/verde_pfp.bin
lib/firmware/amdgpu/verde_rlc.bin
lib/firmware/amdgpu/verde_smc.bin
lib/firmware/amdgpu/verde_uvd.bin
#lib/firmware/ar3k
#lib/firmware/ar3k/1020200
lib/firmware/ar3k/1020200/PS_ASIC.pst
@@ -432,12 +500,14 @@ lib/firmware/ath10k/QCA6174/hw3.0/board-2.bin
lib/firmware/ath10k/QCA6174/hw3.0/board.bin
lib/firmware/ath10k/QCA6174/hw3.0/firmware-4.bin
lib/firmware/ath10k/QCA6174/hw3.0/firmware-6.bin
lib/firmware/ath10k/QCA6174/hw3.0/firmware-sdio-6.bin
#lib/firmware/ath10k/QCA9377
#lib/firmware/ath10k/QCA9377/hw1.0
lib/firmware/ath10k/QCA9377/hw1.0/board-2.bin
lib/firmware/ath10k/QCA9377/hw1.0/board.bin
lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin
lib/firmware/ath10k/QCA9377/hw1.0/firmware-6.bin
lib/firmware/ath10k/QCA9377/hw1.0/firmware-sdio-5.bin
#lib/firmware/ath10k/QCA9887
#lib/firmware/ath10k/QCA9887/hw1.0
lib/firmware/ath10k/QCA9887/hw1.0/board.bin
@@ -463,6 +533,48 @@ lib/firmware/ath10k/QCA99X0/hw2.0/firmware-5.bin
lib/firmware/ath10k/WCN3990/hw1.0
lib/firmware/ath10k/WCN3990/hw1.0/firmware-5.bin
lib/firmware/ath10k/WCN3990/hw1.0/wlanmdsp.mbn
lib/firmware/ath11k
lib/firmware/ath11k/IPQ6018
lib/firmware/ath11k/IPQ6018/hw1.0
lib/firmware/ath11k/IPQ6018/hw1.0/board-2.bin
lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.b00
lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.b01
lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.b02
lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.flist
lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.mdt
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b00
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b01
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b02
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b03
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b04
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b05
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b07
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b08
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.flist
lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.mdt
lib/firmware/ath11k/IPQ8074
lib/firmware/ath11k/IPQ8074/hw2.0
lib/firmware/ath11k/IPQ8074/hw2.0/board-2.bin
lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.b00
lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.b01
lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.b02
lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.flist
lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.mdt
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b00
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b01
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b02
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b03
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b04
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b05
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b07
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b08
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.flist
lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.mdt
lib/firmware/ath11k/QCA6390
lib/firmware/ath11k/QCA6390/hw2.0
lib/firmware/ath11k/QCA6390/hw2.0/amss.bin
lib/firmware/ath11k/QCA6390/hw2.0/board-2.bin
lib/firmware/ath11k/QCA6390/hw2.0/m3.bin
lib/firmware/ath3k-1.fw
#lib/firmware/ath6k
#lib/firmware/ath6k/AR6002
@@ -518,6 +630,7 @@ lib/firmware/ath9k_htc/htc_9271-1.4.0.fw
lib/firmware/atmel/wilc1000_ap_fw.bin
lib/firmware/atmel/wilc1000_fw.bin
lib/firmware/atmel/wilc1000_p2p_fw.bin
lib/firmware/atmel/wilc1000_wifi_firmware-1.bin
lib/firmware/atmel/wilc1000_wifi_firmware.bin
lib/firmware/atmsar11.fw
#lib/firmware/atusb
@@ -611,6 +724,8 @@ lib/firmware/brcm/BCM-0bb4-0306.hcd
lib/firmware/brcm/bcm4329-fullmac-4.bin
lib/firmware/brcm/bcm43xx-0.fw
lib/firmware/brcm/bcm43xx_hdr-0.fw
lib/firmware/brcm/brcmfmac43012-sdio.bin
lib/firmware/brcm/brcmfmac43012-sdio.clm_blob
lib/firmware/brcm/brcmfmac43143-sdio.bin
lib/firmware/brcm/brcmfmac43143.bin
lib/firmware/brcm/brcmfmac43236b.bin
@@ -625,6 +740,7 @@ lib/firmware/brcm/brcmfmac4334-sdio.bin
lib/firmware/brcm/brcmfmac43340-sdio.bin
lib/firmware/brcm/brcmfmac43340-sdio.meegopad-t08.txt
lib/firmware/brcm/brcmfmac43340-sdio.pov-tab-p1006w-data.txt
lib/firmware/brcm/brcmfmac43340-sdio.predia-basic.txt
lib/firmware/brcm/brcmfmac4335-sdio.bin
lib/firmware/brcm/brcmfmac43362-sdio.bin
lib/firmware/brcm/brcmfmac43362-sdio.cubietech,cubietruck.txt
@@ -634,22 +750,39 @@ lib/firmware/brcm/brcmfmac43430-sdio.AP6212.txt
lib/firmware/brcm/brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt
lib/firmware/brcm/brcmfmac43430-sdio.MUR1DX.txt
lib/firmware/brcm/brcmfmac43430-sdio.bin
lib/firmware/brcm/brcmfmac43430-sdio.clm_blob
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,3-model-b.txt
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,model-zero-w.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-plus.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-ultra.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-zero.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m3.txt
lib/firmware/brcm/brcmfmac43430a0-sdio.ONDA-V80_PLUS.txt
lib/firmware/brcm/brcmfmac43430a0-sdio.bin
lib/firmware/brcm/brcmfmac43430a0-sdio.ilife-S806.txt
lib/firmware/brcm/brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt
lib/firmware/brcm/brcmfmac43455-sdio.MINIX-NEO_Z83-4.txt
lib/firmware/brcm/brcmfmac43455-sdio.Raspberry_Pi_Foundation-Raspberry_Pi_4_Model_B.txt
lib/firmware/brcm/brcmfmac43455-sdio.Raspberry_Pi_Foundation-Raspberry_Pi_Compute_Module_4.txt
lib/firmware/brcm/brcmfmac43455-sdio.bin
lib/firmware/brcm/brcmfmac43455-sdio.clm_blob
lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-a-plus.txt
lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt
lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt
lib/firmware/brcm/brcmfmac4350-pcie.bin
lib/firmware/brcm/brcmfmac4350c2-pcie.bin
lib/firmware/brcm/brcmfmac4354-sdio.bin
lib/firmware/brcm/brcmfmac4354-sdio.clm_blob
lib/firmware/brcm/brcmfmac4356-pcie.bin
lib/firmware/brcm/brcmfmac4356-pcie.clm_blob
lib/firmware/brcm/brcmfmac4356-pcie.gpd-win-pocket.txt
lib/firmware/brcm/brcmfmac4356-sdio.bin
lib/firmware/brcm/brcmfmac4356-sdio.clm_blob
lib/firmware/brcm/brcmfmac4356-sdio.khadas,vim2.txt
lib/firmware/brcm/brcmfmac4356-sdio.vamrs,rock960.txt
lib/firmware/brcm/brcmfmac43569.bin
lib/firmware/brcm/brcmfmac43570-pcie.bin
lib/firmware/brcm/brcmfmac43570-pcie.clm_blob
lib/firmware/brcm/brcmfmac4358-pcie.bin
lib/firmware/brcm/brcmfmac43602-pcie.ap.bin
lib/firmware/brcm/brcmfmac43602-pcie.bin
@@ -657,7 +790,10 @@ lib/firmware/brcm/brcmfmac4366b-pcie.bin
lib/firmware/brcm/brcmfmac4366c-pcie.bin
lib/firmware/brcm/brcmfmac4371-pcie.bin
lib/firmware/brcm/brcmfmac4373-sdio.bin
lib/firmware/brcm/brcmfmac4373-sdio.clm_blob
lib/firmware/brcm/brcmfmac4373.bin
lib/firmware/brcm/brcmfmac54591-pcie.bin
lib/firmware/brcm/brcmfmac54591-pcie.clm_blob
#lib/firmware/cadence
lib/firmware/cadence/mhdp8546.bin
lib/firmware/carl9170-1.fw
@@ -719,16 +855,38 @@ lib/firmware/cxgb4/configs/t6-config-hashfilter.txt
lib/firmware/cxgb4/t4-config.txt
lib/firmware/cxgb4/t4fw-1.14.4.0.bin
lib/firmware/cxgb4/t4fw-1.15.37.0.bin
lib/firmware/cxgb4/t4fw-1.24.14.0.bin
lib/firmware/cxgb4/t4fw-1.25.4.0.bin
lib/firmware/cxgb4/t4fw.bin
lib/firmware/cxgb4/t5-config.txt
lib/firmware/cxgb4/t5fw-1.14.4.0.bin
lib/firmware/cxgb4/t5fw-1.15.37.0.bin
lib/firmware/cxgb4/t5fw-1.24.14.0.bin
lib/firmware/cxgb4/t5fw-1.25.4.0.bin
lib/firmware/cxgb4/t5fw.bin
lib/firmware/cxgb4/t6-config.txt
lib/firmware/cxgb4/t6fw-1.24.14.0.bin
lib/firmware/cxgb4/t6fw-1.25.4.0.bin
lib/firmware/cxgb4/t6fw.bin
lib/firmware/cypress
lib/firmware/cypress/cyfmac43012-sdio.bin
lib/firmware/cypress/cyfmac43012-sdio.clm_blob
lib/firmware/cypress/cyfmac43340-sdio.bin
lib/firmware/cypress/cyfmac43362-sdio.bin
lib/firmware/cypress/cyfmac4339-sdio.bin
lib/firmware/cypress/cyfmac43430-sdio.bin
lib/firmware/cypress/cyfmac43430-sdio.clm_blob
lib/firmware/cypress/cyfmac43455-sdio.bin
lib/firmware/cypress/cyfmac43455-sdio.clm_blob
lib/firmware/cypress/cyfmac4354-sdio.bin
lib/firmware/cypress/cyfmac4354-sdio.clm_blob
lib/firmware/cypress/cyfmac4356-pcie.bin
lib/firmware/cypress/cyfmac4356-pcie.clm_blob
lib/firmware/cypress/cyfmac4356-sdio.bin
lib/firmware/cypress/cyfmac4356-sdio.clm_blob
lib/firmware/cypress/cyfmac43570-pcie.bin
lib/firmware/cypress/cyfmac43570-pcie.clm_blob
lib/firmware/cypress/cyfmac4373-sdio.bin
lib/firmware/cypress/cyfmac4373-sdio.clm_blob
lib/firmware/cypress/cyfmac54591-pcie.bin
lib/firmware/cypress/cyfmac54591-pcie.clm_blob
#lib/firmware/dabusb
lib/firmware/dabusb/bitstream.bin
lib/firmware/dabusb/firmware.fw
@@ -806,30 +964,41 @@ lib/firmware/i2400m-fw-usb-1.4.sbcf
lib/firmware/i2400m-fw-usb-1.5.sbcf
lib/firmware/i6050-fw-usb-1.5.sbcf
#lib/firmware/i915
lib/firmware/i915/adlp_dmc_ver2_09.bin
lib/firmware/i915/adlp_dmc_ver2_10.bin
lib/firmware/i915/adls_dmc_ver2_01.bin
lib/firmware/i915/bxt_dmc_ver1.bin
lib/firmware/i915/bxt_dmc_ver1_07.bin
lib/firmware/i915/bxt_guc_32.0.3.bin
lib/firmware/i915/bxt_guc_33.0.0.bin
lib/firmware/i915/bxt_guc_49.0.1.bin
lib/firmware/i915/bxt_guc_ver8_7.bin
lib/firmware/i915/bxt_guc_ver9_29.bin
lib/firmware/i915/bxt_huc_2.0.0.bin
lib/firmware/i915/bxt_huc_ver01_07_1398.bin
lib/firmware/i915/bxt_huc_ver01_8_2893.bin
lib/firmware/i915/cml_guc_33.0.0.bin
lib/firmware/i915/cml_guc_49.0.1.bin
lib/firmware/i915/cml_huc_4.0.0.bin
lib/firmware/i915/cnl_dmc_ver1_06.bin
lib/firmware/i915/cnl_dmc_ver1_07.bin
lib/firmware/i915/dg1_dmc_ver2_02.bin
lib/firmware/i915/dg1_guc_49.0.1.bin
lib/firmware/i915/dg1_huc_7.7.1.bin
lib/firmware/i915/ehl_guc_33.0.4.bin
lib/firmware/i915/ehl_guc_49.0.1.bin
lib/firmware/i915/ehl_huc_9.0.0.bin
lib/firmware/i915/glk_dmc_ver1_04.bin
lib/firmware/i915/glk_guc_32.0.3.bin
lib/firmware/i915/glk_guc_33.0.0.bin
lib/firmware/i915/glk_guc_49.0.1.bin
lib/firmware/i915/glk_huc_4.0.0.bin
lib/firmware/i915/glk_huc_ver03_01_2893.bin
lib/firmware/i915/icl_dmc_ver1_07.bin
lib/firmware/i915/icl_dmc_ver1_09.bin
lib/firmware/i915/icl_guc_32.0.3.bin
lib/firmware/i915/icl_guc_33.0.0.bin
lib/firmware/i915/icl_guc_49.0.1.bin
lib/firmware/i915/icl_huc_9.0.0.bin
lib/firmware/i915/icl_huc_ver8_4_3238.bin
lib/firmware/i915/kbl_dmc_ver1.bin
@@ -837,16 +1006,19 @@ lib/firmware/i915/kbl_dmc_ver1_01.bin
lib/firmware/i915/kbl_dmc_ver1_04.bin
lib/firmware/i915/kbl_guc_32.0.3.bin
lib/firmware/i915/kbl_guc_33.0.0.bin
lib/firmware/i915/kbl_guc_49.0.1.bin
lib/firmware/i915/kbl_guc_ver9_14.bin
lib/firmware/i915/kbl_guc_ver9_39.bin
lib/firmware/i915/kbl_huc_4.0.0.bin
lib/firmware/i915/kbl_huc_ver02_00_1810.bin
lib/firmware/i915/rkl_dmc_ver2_02.bin
lib/firmware/i915/skl_dmc_ver1.bin
lib/firmware/i915/skl_dmc_ver1_23.bin
lib/firmware/i915/skl_dmc_ver1_26.bin
lib/firmware/i915/skl_dmc_ver1_27.bin
lib/firmware/i915/skl_guc_32.0.3.bin
lib/firmware/i915/skl_guc_33.0.0.bin
lib/firmware/i915/skl_guc_49.0.1.bin
lib/firmware/i915/skl_guc_ver1.bin
lib/firmware/i915/skl_guc_ver4.bin
lib/firmware/i915/skl_guc_ver6.bin
@@ -856,9 +1028,12 @@ lib/firmware/i915/skl_huc_2.0.0.bin
lib/firmware/i915/skl_huc_ver01_07_1398.bin
lib/firmware/i915/tgl_dmc_ver2_04.bin
lib/firmware/i915/tgl_dmc_ver2_06.bin
lib/firmware/i915/tgl_dmc_ver2_08.bin
lib/firmware/i915/tgl_guc_35.2.0.bin
lib/firmware/i915/tgl_guc_49.0.1.bin
lib/firmware/i915/tgl_huc_7.0.12.bin
lib/firmware/i915/tgl_huc_7.0.3.bin
lib/firmware/i915/tgl_huc_7.5.0.bin
#lib/firmware/imx
#lib/firmware/imx/sdma
lib/firmware/imx/sdma/sdma-imx6q.bin
@@ -895,6 +1070,8 @@ lib/firmware/intel/fw_sst_0f28.bin
lib/firmware/intel/fw_sst_0f28.bin-48kHz_i2s_master
lib/firmware/intel/fw_sst_0f28_ssp0.bin
lib/firmware/intel/fw_sst_22a8.bin
lib/firmware/intel/ibt-0041-0041.ddc
lib/firmware/intel/ibt-0041-0041.sfi
lib/firmware/intel/ibt-11-5.ddc
lib/firmware/intel/ibt-11-5.sfi
lib/firmware/intel/ibt-12-16.ddc
@@ -950,7 +1127,9 @@ lib/firmware/intel/ibt-hw-37.8.10-fw-22.50.19.14.f.bseq
lib/firmware/intel/ibt-hw-37.8.bseq
#lib/firmware/intel/ice
#lib/firmware/intel/ice/ddp
lib/firmware/intel/ice/ddp/ice-1.3.4.0.pkg
lib/firmware/intel/ice/ddp-comms
lib/firmware/intel/ice/ddp-comms/ice_comms-1.3.20.0.pkg
lib/firmware/intel/ice/ddp/ice-1.3.16.0.pkg
lib/firmware/intel/ice/ddp/ice.pkg
lib/firmware/intel/ipu3-fw.bin
lib/firmware/intel/irci_irci_ecr-master_20161208_0213_20170112_1500.bin
@@ -1046,31 +1225,48 @@ lib/firmware/iwlwifi-Qu-b0-hr-b0-48.ucode
lib/firmware/iwlwifi-Qu-b0-hr-b0-50.ucode
lib/firmware/iwlwifi-Qu-b0-hr-b0-53.ucode
lib/firmware/iwlwifi-Qu-b0-hr-b0-55.ucode
lib/firmware/iwlwifi-Qu-b0-hr-b0-59.ucode
lib/firmware/iwlwifi-Qu-b0-hr-b0-62.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-48.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-50.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-53.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-55.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-59.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-62.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-48.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-50.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-53.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-55.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-59.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-62.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-48.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-50.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-53.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-55.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-59.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-62.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-48.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-50.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-53.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-55.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-59.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-62.ucode
lib/firmware/iwlwifi-QuZ-a0-jf-b0-48.ucode
lib/firmware/iwlwifi-QuZ-a0-jf-b0-50.ucode
lib/firmware/iwlwifi-QuZ-a0-jf-b0-53.ucode
lib/firmware/iwlwifi-QuZ-a0-jf-b0-55.ucode
lib/firmware/iwlwifi-QuZ-a0-jf-b0-59.ucode
lib/firmware/iwlwifi-QuZ-a0-jf-b0-62.ucode
lib/firmware/iwlwifi-cc-a0-46.ucode
lib/firmware/iwlwifi-cc-a0-48.ucode
lib/firmware/iwlwifi-cc-a0-50.ucode
lib/firmware/iwlwifi-cc-a0-53.ucode
lib/firmware/iwlwifi-cc-a0-55.ucode
lib/firmware/iwlwifi-cc-a0-59.ucode
lib/firmware/iwlwifi-cc-a0-62.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-59.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-62.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm
#lib/firmware/kaweth
lib/firmware/kaweth/new_code.bin
lib/firmware/kaweth/new_code_fix.bin
@@ -1128,10 +1324,14 @@ lib/firmware/liquidio/lio_210sv_nic.bin
lib/firmware/liquidio/lio_23xx_nic.bin
lib/firmware/liquidio/lio_23xx_vsw.bin
lib/firmware/liquidio/lio_410nv_nic.bin
lib/firmware/lt9611uxc_fw.bin
#lib/firmware/matrox
lib/firmware/matrox/g200_warp.fw
lib/firmware/matrox/g400_warp.fw
#lib/firmware/mediatek
lib/firmware/mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin
lib/firmware/mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin
lib/firmware/mediatek/WIFI_RAM_CODE_MT7961_1.bin
lib/firmware/mediatek/mt7610e.bin
lib/firmware/mediatek/mt7610u.bin
lib/firmware/mediatek/mt7615_cr4.bin
@@ -1167,8 +1367,32 @@ lib/firmware/mellanox/mlxsw_spectrum-13.2000.1122.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2000.1886.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2000.2308.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2000.2714.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2007.1168.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.1036.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.1310.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.1312.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.2018.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.2304.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.2406.mfa2
lib/firmware/mellanox/mlxsw_spectrum-13.2008.2438.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2000.2308.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2000.2714.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2007.1168.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.1036.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.1310.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.1312.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2018.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2304.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2406.mfa2
lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2438.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2007.1168.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.1036.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.1310.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.1312.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2018.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2304.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2406.mfa2
lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2438.mfa2
#lib/firmware/meson
#lib/firmware/meson/vdec
lib/firmware/meson/vdec/g12a_h264.bin
@@ -1209,6 +1433,9 @@ lib/firmware/mrvl/pcie8897_uapsta.bin
lib/firmware/mrvl/pcie8997_wlan_v4.bin
lib/firmware/mrvl/pcieuart8997_combo_v4.bin
lib/firmware/mrvl/pcieusb8997_combo_v4.bin
lib/firmware/mrvl/prestera
lib/firmware/mrvl/prestera/mvsw_prestera_fw-v2.0.img
lib/firmware/mrvl/prestera/mvsw_prestera_fw-v3.0.img
lib/firmware/mrvl/sd8688.bin
lib/firmware/mrvl/sd8688_helper.bin
lib/firmware/mrvl/sd8787_uapsta.bin
@@ -1630,6 +1857,7 @@ lib/firmware/nvidia/tegra186/vic.bin
lib/firmware/nvidia/tegra186/vic04_ucode.bin
lib/firmware/nvidia/tegra186/xusb.bin
#lib/firmware/nvidia/tegra194
lib/firmware/nvidia/tegra194/vic.bin
lib/firmware/nvidia/tegra194/xusb.bin
#lib/firmware/nvidia/tegra210
lib/firmware/nvidia/tegra210/vic.bin
@@ -1790,6 +2018,7 @@ lib/firmware/qca/crbtfw21.tlv
lib/firmware/qca/crbtfw32.tlv
lib/firmware/qca/crnv21.bin
lib/firmware/qca/crnv32.bin
lib/firmware/qca/crnv32u.bin
lib/firmware/qca/htbtfw20.tlv
lib/firmware/qca/htnv20.bin
lib/firmware/qca/nvm_00130300.bin
@@ -1823,6 +2052,10 @@ lib/firmware/qcom/a530_zap.mdt
lib/firmware/qcom/a530v3_gpmu.fw2
lib/firmware/qcom/a630_gmu.bin
lib/firmware/qcom/a630_sqe.fw
lib/firmware/qcom/a650_gmu.bin
lib/firmware/qcom/a650_sqe.fw
lib/firmware/qcom/a660_gmu.bin
lib/firmware/qcom/a660_sqe.fw
#lib/firmware/qcom/sdm845
lib/firmware/qcom/sdm845/a630_zap.mbn
lib/firmware/qcom/sdm845/adsp.mbn
@@ -1834,6 +2067,13 @@ lib/firmware/qcom/sdm845/mba.mbn
lib/firmware/qcom/sdm845/modem.mbn
lib/firmware/qcom/sdm845/modemuw.jsn
lib/firmware/qcom/sdm845/wlanmdsp.mbn
lib/firmware/qcom/sm8250
lib/firmware/qcom/sm8250/a650_zap.mbn
lib/firmware/qcom/sm8250/adsp.mbn
lib/firmware/qcom/sm8250/adspr.jsn
lib/firmware/qcom/sm8250/adspua.jsn
lib/firmware/qcom/sm8250/cdsp.mbn
lib/firmware/qcom/sm8250/cdspr.jsn
#lib/firmware/qcom/venus-1.8
lib/firmware/qcom/venus-1.8/venus.b00
lib/firmware/qcom/venus-1.8/venus.b01
@@ -1864,6 +2104,36 @@ lib/firmware/qcom/venus-5.4/venus.b03
lib/firmware/qcom/venus-5.4/venus.b04
lib/firmware/qcom/venus-5.4/venus.mbn
lib/firmware/qcom/venus-5.4/venus.mdt
lib/firmware/qcom/vpu-1.0
lib/firmware/qcom/vpu-1.0/venus.b00
lib/firmware/qcom/vpu-1.0/venus.b01
lib/firmware/qcom/vpu-1.0/venus.b02
lib/firmware/qcom/vpu-1.0/venus.b03
lib/firmware/qcom/vpu-1.0/venus.b04
lib/firmware/qcom/vpu-1.0/venus.b05
lib/firmware/qcom/vpu-1.0/venus.b06
lib/firmware/qcom/vpu-1.0/venus.b07
lib/firmware/qcom/vpu-1.0/venus.b08
lib/firmware/qcom/vpu-1.0/venus.b09
lib/firmware/qcom/vpu-1.0/venus.b10
lib/firmware/qcom/vpu-1.0/venus.b19
lib/firmware/qcom/vpu-1.0/venus.mbn
lib/firmware/qcom/vpu-1.0/venus.mdt
lib/firmware/qcom/vpu-2.0
lib/firmware/qcom/vpu-2.0/venus.b00
lib/firmware/qcom/vpu-2.0/venus.b01
lib/firmware/qcom/vpu-2.0/venus.b02
lib/firmware/qcom/vpu-2.0/venus.b03
lib/firmware/qcom/vpu-2.0/venus.b04
lib/firmware/qcom/vpu-2.0/venus.b05
lib/firmware/qcom/vpu-2.0/venus.b06
lib/firmware/qcom/vpu-2.0/venus.b07
lib/firmware/qcom/vpu-2.0/venus.b08
lib/firmware/qcom/vpu-2.0/venus.b09
lib/firmware/qcom/vpu-2.0/venus.b10
lib/firmware/qcom/vpu-2.0/venus.b19
lib/firmware/qcom/vpu-2.0/venus.mbn
lib/firmware/qcom/vpu-2.0/venus.mdt
#lib/firmware/qed
lib/firmware/qed/qed_init_values-8.10.9.0.bin
lib/firmware/qed/qed_init_values-8.14.6.0.bin
@@ -2174,12 +2444,14 @@ lib/firmware/rtl_bt/rtl8192ee_fw.bin
lib/firmware/rtl_bt/rtl8192eu_fw.bin
lib/firmware/rtl_bt/rtl8723a_fw.bin
lib/firmware/rtl_bt/rtl8723b_fw.bin
lib/firmware/rtl_bt/rtl8723bs_config-OBDA0623.bin
lib/firmware/rtl_bt/rtl8723bs_config-OBDA8723.bin
lib/firmware/rtl_bt/rtl8723bs_fw.bin
lib/firmware/rtl_bt/rtl8723d_config.bin
lib/firmware/rtl_bt/rtl8723d_fw.bin
lib/firmware/rtl_bt/rtl8761a_fw.bin
lib/firmware/rtl_bt/rtl8812ae_fw.bin
lib/firmware/rtl_bt/rtl8821a_config.bin
lib/firmware/rtl_bt/rtl8821a_fw.bin
lib/firmware/rtl_bt/rtl8821c_config.bin
lib/firmware/rtl_bt/rtl8821c_fw.bin
@@ -2189,6 +2461,8 @@ lib/firmware/rtl_bt/rtl8822cs_config.bin
lib/firmware/rtl_bt/rtl8822cs_fw.bin
lib/firmware/rtl_bt/rtl8822cu_config.bin
lib/firmware/rtl_bt/rtl8822cu_fw.bin
lib/firmware/rtl_bt/rtl8852au_config.bin
lib/firmware/rtl_bt/rtl8852au_fw.bin
#lib/firmware/rtl_nic
lib/firmware/rtl_nic/rtl8105e-1.fw
lib/firmware/rtl_nic/rtl8106e-1.fw
@@ -2196,10 +2470,15 @@ lib/firmware/rtl_nic/rtl8106e-2.fw
lib/firmware/rtl_nic/rtl8107e-1.fw
lib/firmware/rtl_nic/rtl8107e-2.fw
lib/firmware/rtl_nic/rtl8125a-3.fw
lib/firmware/rtl_nic/rtl8125b-1.fw
lib/firmware/rtl_nic/rtl8125b-2.fw
lib/firmware/rtl_nic/rtl8153a-2.fw
lib/firmware/rtl_nic/rtl8153a-3.fw
lib/firmware/rtl_nic/rtl8153a-4.fw
lib/firmware/rtl_nic/rtl8153b-2.fw
lib/firmware/rtl_nic/rtl8153c-1.fw
lib/firmware/rtl_nic/rtl8156a-2.fw
lib/firmware/rtl_nic/rtl8156b-2.fw
lib/firmware/rtl_nic/rtl8168d-1.fw
lib/firmware/rtl_nic/rtl8168d-2.fw
lib/firmware/rtl_nic/rtl8168e-1.fw
@@ -2261,6 +2540,8 @@ lib/firmware/rtw88/rtw8821c_fw.bin
lib/firmware/rtw88/rtw8822b_fw.bin
lib/firmware/rtw88/rtw8822c_fw.bin
lib/firmware/rtw88/rtw8822c_wow_fw.bin
lib/firmware/rtw89
lib/firmware/rtw89/rtw8852a_fw.bin
lib/firmware/s2250.fw
lib/firmware/s2250_loader.fw
lib/firmware/s5p-mfc-v6-v2.fw
@@ -2275,6 +2556,8 @@ lib/firmware/sb16/ima_adpcm_init.csp
lib/firmware/sb16/ima_adpcm_playback.csp
lib/firmware/sb16/mulaw_main.csp
lib/firmware/sdd_sagrad_1091_1098.bin
lib/firmware/silabs
lib/firmware/silabs/wfm_wf200_C0.sec
#lib/firmware/slicoss
lib/firmware/slicoss/gbdownload.sys
lib/firmware/slicoss/gbrcvucode.sys
@@ -2294,6 +2577,7 @@ lib/firmware/sxg/saharadownloadB.sys
lib/firmware/tdmb_nova_12mhz.inp
#lib/firmware/tehuti
lib/firmware/tehuti/bdx.bin
lib/firmware/ti
#lib/firmware/ti-connectivity
lib/firmware/ti-connectivity/TIInit_6.2.31.bts
lib/firmware/ti-connectivity/TIInit_6.6.15.bts
@@ -2331,6 +2615,7 @@ lib/firmware/ti-connectivity/wl18xx-fw-4.bin
lib/firmware/ti-connectivity/wl18xx-fw.bin
#lib/firmware/ti-keystone
lib/firmware/ti-keystone/ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin
lib/firmware/ti/vpdma-1b8.bin
lib/firmware/ti_3410.fw
lib/firmware/ti_5052.fw
#lib/firmware/tigon

View File

@@ -72,9 +72,9 @@
#usr/include/nettle/yarrow.h
usr/lib/libhogweed.so
usr/lib/libhogweed.so.6
usr/lib/libhogweed.so.6.3
usr/lib/libhogweed.so.6.4
#usr/lib/libnettle.so
usr/lib/libnettle.so.8
usr/lib/libnettle.so.8.3
usr/lib/libnettle.so.8.4
#usr/lib/pkgconfig/hogweed.pc
#usr/lib/pkgconfig/nettle.pc

View File

@@ -6,132 +6,132 @@
#usr/lib/libpcre2-16.la
#usr/lib/libpcre2-16.so
usr/lib/libpcre2-16.so.0
usr/lib/libpcre2-16.so.0.10.1
usr/lib/libpcre2-16.so.0.10.2
#usr/lib/libpcre2-32.la
#usr/lib/libpcre2-32.so
usr/lib/libpcre2-32.so.0
usr/lib/libpcre2-32.so.0.10.1
usr/lib/libpcre2-32.so.0.10.2
#usr/lib/libpcre2-8.la
#usr/lib/libpcre2-8.so
usr/lib/libpcre2-8.so.0
usr/lib/libpcre2-8.so.0.10.1
usr/lib/libpcre2-8.so.0.10.2
#usr/lib/libpcre2-posix.la
#usr/lib/libpcre2-posix.so
usr/lib/libpcre2-posix.so.2
usr/lib/libpcre2-posix.so.2.0.3
usr/lib/libpcre2-posix.so.3
usr/lib/libpcre2-posix.so.3.0.0
#usr/lib/pkgconfig/libpcre2-16.pc
#usr/lib/pkgconfig/libpcre2-32.pc
#usr/lib/pkgconfig/libpcre2-8.pc
#usr/lib/pkgconfig/libpcre2-posix.pc
#usr/share/doc/pcre-pcre2-10.36
#usr/share/doc/pcre-pcre2-10.36/AUTHORS
#usr/share/doc/pcre-pcre2-10.36/COPYING
#usr/share/doc/pcre-pcre2-10.36/ChangeLog
#usr/share/doc/pcre-pcre2-10.36/LICENCE
#usr/share/doc/pcre-pcre2-10.36/NEWS
#usr/share/doc/pcre-pcre2-10.36/README
#usr/share/doc/pcre-pcre2-10.36/html
#usr/share/doc/pcre-pcre2-10.36/html/NON-AUTOTOOLS-BUILD.txt
#usr/share/doc/pcre-pcre2-10.36/html/README.txt
#usr/share/doc/pcre-pcre2-10.36/html/index.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2-config.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_callout_enumerate.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_code_copy.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_code_copy_with_tables.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_code_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_compile.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_compile_context_copy.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_compile_context_create.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_compile_context_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_config.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_convert_context_copy.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_convert_context_create.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_convert_context_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_converted_pattern_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_dfa_match.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_general_context_copy.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_general_context_create.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_general_context_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_get_error_message.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_get_mark.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_get_match_data_size.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_get_ovector_count.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_get_ovector_pointer.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_get_startchar.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_jit_compile.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_jit_free_unused_memory.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_jit_match.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_jit_stack_assign.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_jit_stack_create.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_jit_stack_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_maketables.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_maketables_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match_context_copy.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match_context_create.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match_context_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match_data_create.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match_data_create_from_pattern.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_match_data_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_pattern_convert.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_pattern_info.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_serialize_decode.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_serialize_encode.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_serialize_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_serialize_get_number_of_codes.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_bsr.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_callout.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_character_tables.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_compile_extra_options.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_compile_recursion_guard.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_depth_limit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_glob_escape.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_glob_separator.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_heap_limit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_match_limit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_max_pattern_length.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_newline.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_offset_limit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_parens_nest_limit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_recursion_limit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_recursion_memory_management.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_set_substitute_callout.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substitute.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_copy_byname.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_copy_bynumber.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_get_byname.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_get_bynumber.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_length_byname.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_length_bynumber.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_list_free.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_list_get.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_nametable_scan.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2_substring_number_from_name.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2api.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2build.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2callout.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2compat.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2convert.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2demo.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2grep.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2jit.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2limits.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2matching.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2partial.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2pattern.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2perform.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2posix.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2sample.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2serialize.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2syntax.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2test.html
#usr/share/doc/pcre-pcre2-10.36/html/pcre2unicode.html
#usr/share/doc/pcre-pcre2-10.36/pcre2-config.txt
#usr/share/doc/pcre-pcre2-10.36/pcre2.txt
#usr/share/doc/pcre-pcre2-10.36/pcre2grep.txt
#usr/share/doc/pcre-pcre2-10.36/pcre2test.txt
#usr/share/doc/pcre-pcre2-10.37
#usr/share/doc/pcre-pcre2-10.37/AUTHORS
#usr/share/doc/pcre-pcre2-10.37/COPYING
#usr/share/doc/pcre-pcre2-10.37/ChangeLog
#usr/share/doc/pcre-pcre2-10.37/LICENCE
#usr/share/doc/pcre-pcre2-10.37/NEWS
#usr/share/doc/pcre-pcre2-10.37/README
#usr/share/doc/pcre-pcre2-10.37/html
#usr/share/doc/pcre-pcre2-10.37/html/NON-AUTOTOOLS-BUILD.txt
#usr/share/doc/pcre-pcre2-10.37/html/README.txt
#usr/share/doc/pcre-pcre2-10.37/html/index.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2-config.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_callout_enumerate.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_code_copy.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_code_copy_with_tables.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_code_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile_context_copy.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile_context_create.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile_context_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_config.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_convert_context_copy.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_convert_context_create.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_convert_context_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_converted_pattern_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_dfa_match.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_general_context_copy.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_general_context_create.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_general_context_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_error_message.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_mark.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_match_data_size.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_ovector_count.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_ovector_pointer.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_startchar.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_compile.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_free_unused_memory.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_match.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_stack_assign.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_stack_create.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_stack_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_maketables.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_maketables_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_context_copy.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_context_create.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_context_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_data_create.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_data_create_from_pattern.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_data_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_pattern_convert.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_pattern_info.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_decode.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_encode.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_get_number_of_codes.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_bsr.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_callout.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_character_tables.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_compile_extra_options.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_compile_recursion_guard.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_depth_limit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_glob_escape.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_glob_separator.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_heap_limit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_match_limit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_max_pattern_length.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_newline.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_offset_limit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_parens_nest_limit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_recursion_limit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_recursion_memory_management.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_substitute_callout.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substitute.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_copy_byname.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_copy_bynumber.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_get_byname.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_get_bynumber.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_length_byname.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_length_bynumber.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_list_free.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_list_get.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_nametable_scan.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_number_from_name.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2api.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2build.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2callout.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2compat.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2convert.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2demo.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2grep.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2jit.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2limits.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2matching.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2partial.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2pattern.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2perform.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2posix.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2sample.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2serialize.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2syntax.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2test.html
#usr/share/doc/pcre-pcre2-10.37/html/pcre2unicode.html
#usr/share/doc/pcre-pcre2-10.37/pcre2-config.txt
#usr/share/doc/pcre-pcre2-10.37/pcre2.txt
#usr/share/doc/pcre-pcre2-10.37/pcre2grep.txt
#usr/share/doc/pcre-pcre2-10.37/pcre2test.txt
#usr/share/man/man1/pcre2-config.1
#usr/share/man/man1/pcre2grep.1
#usr/share/man/man1/pcre2test.1

View File

@@ -0,0 +1,7 @@
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/Data
usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/Data/UUID.pm
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Data
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Data/UUID
#usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Data/UUID/.packlist
usr/lib/perl5/site_perl/5.32.1/xxxMACHINExxx-linux-thread-multi/auto/Data/UUID/UUID.so
#usr/share/man/man3/Data::UUID.3

View File

@@ -1 +0,0 @@
#usr/lib/python2.7/site-packages/pyparsing-2.2.0-py2.7.egg

View File

@@ -58,7 +58,7 @@ usr/bin/qpdf
#usr/lib/libqpdf.la
#usr/lib/libqpdf.so
usr/lib/libqpdf.so.28
usr/lib/libqpdf.so.28.3.0
usr/lib/libqpdf.so.28.3.2
#usr/lib/pkgconfig/libqpdf.pc
#usr/share/doc/qpdf
#usr/share/doc/qpdf/qpdf-manual.html

View File

@@ -110,6 +110,7 @@ srv/web/ipfire/html/images/add.gif
srv/web/ipfire/html/images/addblue.gif
srv/web/ipfire/html/images/addgreen.gif
srv/web/ipfire/html/images/address-book-new.png
srv/web/ipfire/html/images/apple.png
srv/web/ipfire/html/images/application-certificate.png
srv/web/ipfire/html/images/application-x-executable.png
srv/web/ipfire/html/images/applications-accessories.png

View File

@@ -5,6 +5,7 @@ usr/sbin/vpddecode
#usr/share/doc/dmidecode
#usr/share/doc/dmidecode/AUTHORS
#usr/share/doc/dmidecode/CHANGELOG
#usr/share/doc/dmidecode/NEWS
#usr/share/doc/dmidecode/README
#usr/share/man/man8/biosdecode.8
#usr/share/man/man8/dmidecode.8

View File

@@ -46,14 +46,12 @@ etc/rc.d/init.d/networking/orange
etc/rc.d/init.d/networking/red
#etc/rc.d/init.d/networking/red.down
etc/rc.d/init.d/networking/red.down/10-ipsec
etc/rc.d/init.d/networking/red.down/10-miniupnpd
etc/rc.d/init.d/networking/red.down/10-ovpn
etc/rc.d/init.d/networking/red.down/10-static-routes
etc/rc.d/init.d/networking/red.down/20-firewall
etc/rc.d/init.d/networking/red.down/99-beep
#etc/rc.d/init.d/networking/red.up
etc/rc.d/init.d/networking/red.up/01-conntrack-cleanup
etc/rc.d/init.d/networking/red.up/10-miniupnpd
etc/rc.d/init.d/networking/red.up/10-multicast
etc/rc.d/init.d/networking/red.up/10-static-routes
etc/rc.d/init.d/networking/red.up/20-firewall
@@ -92,7 +90,6 @@ etc/rc.d/init.d/template
etc/rc.d/init.d/udev
etc/rc.d/init.d/udev_retry
etc/rc.d/init.d/unbound
etc/rc.d/init.d/upnpd
etc/rc.d/init.d/vnstat
etc/rc.d/init.d/waitdrives
etc/rc.d/init.d/wlanclient
@@ -113,7 +110,6 @@ etc/rc.d/rc0.d/K78suricata
etc/rc.d/rc0.d/K79leds
etc/rc.d/rc0.d/K80network
etc/rc.d/rc0.d/K82wlanclient
#etc/rc.d/rc0.d/K84bluetooth
#etc/rc.d/rc0.d/K85messagebus
etc/rc.d/rc0.d/K86unbound
etc/rc.d/rc0.d/K87acpid
@@ -129,7 +125,6 @@ etc/rc.d/rc3.d/S10sysklogd
etc/rc.d/rc3.d/S12acpid
etc/rc.d/rc3.d/S15fireinfo
#etc/rc.d/rc3.d/S15messagebus
#etc/rc.d/rc3.d/S16bluetooth
#etc/rc.d/rc3.d/S18cpufreq
etc/rc.d/rc3.d/S19smartenabler
etc/rc.d/rc3.d/S19wlanclient
@@ -164,7 +159,6 @@ etc/rc.d/rc6.d/K78suricata
etc/rc.d/rc6.d/K79leds
etc/rc.d/rc6.d/K80network
etc/rc.d/rc6.d/K82wlanclient
#etc/rc.d/rc6.d/K84bluetooth
#etc/rc.d/rc6.d/K85messagebus
etc/rc.d/rc6.d/K86unbound
etc/rc.d/rc6.d/K87acpid

View File

@@ -67,6 +67,7 @@ lib/firmware/intel-ucode/06-4d-08
lib/firmware/intel-ucode/06-4e-03
lib/firmware/intel-ucode/06-55-03
lib/firmware/intel-ucode/06-55-04
lib/firmware/intel-ucode/06-55-05
lib/firmware/intel-ucode/06-55-06
lib/firmware/intel-ucode/06-55-07
lib/firmware/intel-ucode/06-55-0b
@@ -80,14 +81,23 @@ lib/firmware/intel-ucode/06-5c-0a
lib/firmware/intel-ucode/06-5e-03
lib/firmware/intel-ucode/06-5f-01
lib/firmware/intel-ucode/06-66-03
lib/firmware/intel-ucode/06-6a-05
lib/firmware/intel-ucode/06-6a-06
lib/firmware/intel-ucode/06-7a-01
lib/firmware/intel-ucode/06-7a-08
lib/firmware/intel-ucode/06-7e-05
lib/firmware/intel-ucode/06-86-04
lib/firmware/intel-ucode/06-86-05
lib/firmware/intel-ucode/06-8a-01
lib/firmware/intel-ucode/06-8c-01
lib/firmware/intel-ucode/06-8c-02
lib/firmware/intel-ucode/06-8d-01
lib/firmware/intel-ucode/06-8e-09
lib/firmware/intel-ucode/06-8e-0a
lib/firmware/intel-ucode/06-8e-0b
lib/firmware/intel-ucode/06-8e-0c
lib/firmware/intel-ucode/06-96-01
lib/firmware/intel-ucode/06-9c-00
lib/firmware/intel-ucode/06-9e-09
lib/firmware/intel-ucode/06-9e-0a
lib/firmware/intel-ucode/06-9e-0b
@@ -98,6 +108,7 @@ lib/firmware/intel-ucode/06-a5-03
lib/firmware/intel-ucode/06-a5-05
lib/firmware/intel-ucode/06-a6-00
lib/firmware/intel-ucode/06-a6-01
lib/firmware/intel-ucode/06-a7-01
lib/firmware/intel-ucode/0f-00-07
lib/firmware/intel-ucode/0f-00-0a
lib/firmware/intel-ucode/0f-01-02

View File

@@ -10,7 +10,7 @@ usr/bin/zstdmt
#usr/lib/libzstd.a
#usr/lib/libzstd.so
usr/lib/libzstd.so.1
usr/lib/libzstd.so.1.4.9
usr/lib/libzstd.so.1.5.0
#usr/lib/pkgconfig/libzstd.pc
#usr/share/man/man1/unzstd.1
#usr/share/man/man1/zstd.1

View File

@@ -0,0 +1 @@
../../../common/XML-Parser

View File

@@ -0,0 +1 @@
../../../common/bind

View File

@@ -0,0 +1 @@
../../../common/ca-certificates

View File

@@ -0,0 +1 @@
../../../common/ethtool

View File

@@ -0,0 +1,14 @@
etc/rc.d/init.d/firewall
etc/ssh/sshd_config
opt/pakfire/lib/functions.pl
opt/pakfire/pakfire
usr/lib/firewall/ipsec-policy
var/ipfire/backup/bin/backup.pl
var/ipfire/countries.pl
var/ipfire/general-functions.pl
var/ipfire/graphs.pl
var/ipfire/header.pl
var/ipfire/ids-functions.pl
var/ipfire/lang.pl
var/ipfire/location-functions.pl
var/ipfire/modem-lib.pl

View File

@@ -0,0 +1 @@
../../../common/fireinfo

View File

@@ -0,0 +1 @@
../../../common/gnutls

View File

@@ -0,0 +1 @@
../../../common/gzip

View File

@@ -0,0 +1 @@
../../../common/hwdata

View File

@@ -0,0 +1 @@
../../../../common/i586/dmidecode

View File

@@ -0,0 +1 @@
../../../../common/i586/intel-microcode

View File

@@ -0,0 +1 @@
../../../common/knot

View File

@@ -0,0 +1 @@
../../../common/libcap

View File

@@ -0,0 +1 @@
../../../common/libnl-3

View File

@@ -0,0 +1 @@
../../../common/libpcap

View File

@@ -0,0 +1 @@
../../../common/libusb

View File

@@ -0,0 +1,410 @@
/lib/firmware/amd/amd_sev_fam17h_model0xh.sbin
/lib/firmware/amd/amd_sev_fam17h_model3xh.sbin
/lib/firmware/amdgpu/arcturus_asd.bin
/lib/firmware/amdgpu/arcturus_gpu_info.bin
/lib/firmware/amdgpu/arcturus_mec2.bin
/lib/firmware/amdgpu/arcturus_mec.bin
/lib/firmware/amdgpu/arcturus_rlc.bin
/lib/firmware/amdgpu/arcturus_sdma.bin
/lib/firmware/amdgpu/arcturus_smc.bin
/lib/firmware/amdgpu/arcturus_sos.bin
/lib/firmware/amdgpu/arcturus_ta.bin
/lib/firmware/amdgpu/arcturus_vcn.bin
/lib/firmware/amdgpu/green_sardine_asd.bin
/lib/firmware/amdgpu/green_sardine_ce.bin
/lib/firmware/amdgpu/green_sardine_dmcub.bin
/lib/firmware/amdgpu/green_sardine_me.bin
/lib/firmware/amdgpu/green_sardine_mec2.bin
/lib/firmware/amdgpu/green_sardine_mec.bin
/lib/firmware/amdgpu/green_sardine_pfp.bin
/lib/firmware/amdgpu/green_sardine_rlc.bin
/lib/firmware/amdgpu/green_sardine_sdma.bin
/lib/firmware/amdgpu/green_sardine_ta.bin
/lib/firmware/amdgpu/green_sardine_vcn.bin
/lib/firmware/amdgpu/navi10_asd.bin
/lib/firmware/amdgpu/navi10_ce.bin
/lib/firmware/amdgpu/navi10_me.bin
/lib/firmware/amdgpu/navi10_mec2.bin
/lib/firmware/amdgpu/navi10_mec.bin
/lib/firmware/amdgpu/navi10_pfp.bin
/lib/firmware/amdgpu/navi10_rlc.bin
/lib/firmware/amdgpu/navi10_sdma1.bin
/lib/firmware/amdgpu/navi10_sdma.bin
/lib/firmware/amdgpu/navi10_smc.bin
/lib/firmware/amdgpu/navi10_sos.bin
/lib/firmware/amdgpu/navi10_ta.bin
/lib/firmware/amdgpu/navi10_vcn.bin
/lib/firmware/amdgpu/navi12_asd.bin
/lib/firmware/amdgpu/navi12_ce.bin
/lib/firmware/amdgpu/navi12_dmcu.bin
/lib/firmware/amdgpu/navi12_gpu_info.bin
/lib/firmware/amdgpu/navi12_me.bin
/lib/firmware/amdgpu/navi12_mec2.bin
/lib/firmware/amdgpu/navi12_mec.bin
/lib/firmware/amdgpu/navi12_pfp.bin
/lib/firmware/amdgpu/navi12_rlc.bin
/lib/firmware/amdgpu/navi12_sdma1.bin
/lib/firmware/amdgpu/navi12_sdma.bin
/lib/firmware/amdgpu/navi12_smc.bin
/lib/firmware/amdgpu/navi12_sos.bin
/lib/firmware/amdgpu/navi12_ta.bin
/lib/firmware/amdgpu/navi12_vcn.bin
/lib/firmware/amdgpu/navi14_asd.bin
/lib/firmware/amdgpu/navi14_ce.bin
/lib/firmware/amdgpu/navi14_me.bin
/lib/firmware/amdgpu/navi14_mec2.bin
/lib/firmware/amdgpu/navi14_mec.bin
/lib/firmware/amdgpu/navi14_pfp.bin
/lib/firmware/amdgpu/navi14_rlc.bin
/lib/firmware/amdgpu/navi14_sdma1.bin
/lib/firmware/amdgpu/navi14_sdma.bin
/lib/firmware/amdgpu/navi14_smc.bin
/lib/firmware/amdgpu/navi14_sos.bin
/lib/firmware/amdgpu/navi14_ta.bin
/lib/firmware/amdgpu/navi14_vcn.bin
/lib/firmware/amdgpu/navy_flounder_ce.bin
/lib/firmware/amdgpu/navy_flounder_dmcub.bin
/lib/firmware/amdgpu/navy_flounder_me.bin
/lib/firmware/amdgpu/navy_flounder_mec2.bin
/lib/firmware/amdgpu/navy_flounder_mec.bin
/lib/firmware/amdgpu/navy_flounder_pfp.bin
/lib/firmware/amdgpu/navy_flounder_rlc.bin
/lib/firmware/amdgpu/navy_flounder_sdma.bin
/lib/firmware/amdgpu/navy_flounder_smc.bin
/lib/firmware/amdgpu/navy_flounder_sos.bin
/lib/firmware/amdgpu/navy_flounder_ta.bin
/lib/firmware/amdgpu/navy_flounder_vcn.bin
/lib/firmware/amdgpu/oland_uvd.bin
/lib/firmware/amdgpu/picasso_asd.bin
/lib/firmware/amdgpu/picasso_ce.bin
/lib/firmware/amdgpu/picasso_me.bin
/lib/firmware/amdgpu/picasso_mec2.bin
/lib/firmware/amdgpu/picasso_mec.bin
/lib/firmware/amdgpu/picasso_pfp.bin
/lib/firmware/amdgpu/picasso_rlc.bin
/lib/firmware/amdgpu/picasso_sdma.bin
/lib/firmware/amdgpu/picasso_ta.bin
/lib/firmware/amdgpu/picasso_vcn.bin
/lib/firmware/amdgpu/pitcairn_uvd.bin
/lib/firmware/amdgpu/polaris12_32_mc.bin
/lib/firmware/amdgpu/raven2_asd.bin
/lib/firmware/amdgpu/raven2_ce.bin
/lib/firmware/amdgpu/raven2_me.bin
/lib/firmware/amdgpu/raven2_mec2.bin
/lib/firmware/amdgpu/raven2_mec.bin
/lib/firmware/amdgpu/raven2_pfp.bin
/lib/firmware/amdgpu/raven2_sdma.bin
/lib/firmware/amdgpu/raven2_ta.bin
/lib/firmware/amdgpu/raven2_vcn.bin
/lib/firmware/amdgpu/raven_asd.bin
/lib/firmware/amdgpu/raven_ce.bin
/lib/firmware/amdgpu/raven_me.bin
/lib/firmware/amdgpu/raven_mec2.bin
/lib/firmware/amdgpu/raven_mec.bin
/lib/firmware/amdgpu/raven_pfp.bin
/lib/firmware/amdgpu/raven_sdma.bin
/lib/firmware/amdgpu/raven_ta.bin
/lib/firmware/amdgpu/raven_vcn.bin
/lib/firmware/amdgpu/renoir_asd.bin
/lib/firmware/amdgpu/renoir_ce.bin
/lib/firmware/amdgpu/renoir_dmcub.bin
/lib/firmware/amdgpu/renoir_me.bin
/lib/firmware/amdgpu/renoir_mec2.bin
/lib/firmware/amdgpu/renoir_mec.bin
/lib/firmware/amdgpu/renoir_pfp.bin
/lib/firmware/amdgpu/renoir_rlc.bin
/lib/firmware/amdgpu/renoir_sdma.bin
/lib/firmware/amdgpu/renoir_ta.bin
/lib/firmware/amdgpu/sienna_cichlid_ce.bin
/lib/firmware/amdgpu/sienna_cichlid_dmcub.bin
/lib/firmware/amdgpu/sienna_cichlid_me.bin
/lib/firmware/amdgpu/sienna_cichlid_mec2.bin
/lib/firmware/amdgpu/sienna_cichlid_mec.bin
/lib/firmware/amdgpu/sienna_cichlid_pfp.bin
/lib/firmware/amdgpu/sienna_cichlid_rlc.bin
/lib/firmware/amdgpu/sienna_cichlid_sdma.bin
/lib/firmware/amdgpu/sienna_cichlid_smc.bin
/lib/firmware/amdgpu/sienna_cichlid_sos.bin
/lib/firmware/amdgpu/sienna_cichlid_ta.bin
/lib/firmware/amdgpu/sienna_cichlid_vcn.bin
/lib/firmware/amdgpu/tahiti_uvd.bin
/lib/firmware/amdgpu/vega10_asd.bin
/lib/firmware/amdgpu/vega10_ce.bin
/lib/firmware/amdgpu/vega10_me.bin
/lib/firmware/amdgpu/vega10_mec2.bin
/lib/firmware/amdgpu/vega10_mec.bin
/lib/firmware/amdgpu/vega10_pfp.bin
/lib/firmware/amdgpu/vega12_asd.bin
/lib/firmware/amdgpu/vega12_ce.bin
/lib/firmware/amdgpu/vega12_me.bin
/lib/firmware/amdgpu/vega12_mec2.bin
/lib/firmware/amdgpu/vega12_mec.bin
/lib/firmware/amdgpu/vega12_pfp.bin
/lib/firmware/amdgpu/vega12_smc.bin
/lib/firmware/amdgpu/vega20_asd.bin
/lib/firmware/amdgpu/vega20_ce.bin
/lib/firmware/amdgpu/vega20_me.bin
/lib/firmware/amdgpu/vega20_mec2.bin
/lib/firmware/amdgpu/vega20_mec.bin
/lib/firmware/amdgpu/vega20_pfp.bin
/lib/firmware/amdgpu/vega20_sdma1.bin
/lib/firmware/amdgpu/vega20_sdma.bin
/lib/firmware/amdgpu/vega20_smc.bin
/lib/firmware/amdgpu/vega20_sos.bin
/lib/firmware/amdgpu/vega20_ta.bin
/lib/firmware/amdgpu/verde_uvd.bin
/lib/firmware/ath10k/QCA6174/hw3.0/board-2.bin
/lib/firmware/ath10k/QCA6174/hw3.0/firmware-6.bin
/lib/firmware/ath10k/QCA6174/hw3.0/firmware-sdio-6.bin
/lib/firmware/ath10k/QCA9377/hw1.0/firmware-sdio-5.bin
/lib/firmware/ath10k/QCA9888/hw2.0/firmware-5.bin
/lib/firmware/ath10k/QCA9984/hw1.0/firmware-5.bin
/lib/firmware/ath11k/IPQ6018/hw1.0/board-2.bin
/lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.b00
/lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.b01
/lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.b02
/lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.flist
/lib/firmware/ath11k/IPQ6018/hw1.0/m3_fw.mdt
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b00
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b01
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b02
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b03
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b04
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b05
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b07
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.b08
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.flist
/lib/firmware/ath11k/IPQ6018/hw1.0/q6_fw.mdt
/lib/firmware/ath11k/IPQ8074/hw2.0/board-2.bin
/lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.b00
/lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.b01
/lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.b02
/lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.flist
/lib/firmware/ath11k/IPQ8074/hw2.0/m3_fw.mdt
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b00
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b01
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b02
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b03
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b04
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b05
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b07
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.b08
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.flist
/lib/firmware/ath11k/IPQ8074/hw2.0/q6_fw.mdt
/lib/firmware/ath11k/QCA6390/hw2.0/amss.bin
/lib/firmware/ath11k/QCA6390/hw2.0/board-2.bin
/lib/firmware/ath11k/QCA6390/hw2.0/m3.bin
/lib/firmware/atmel/wilc1000_wifi_firmware-1.bin
/lib/firmware/brcm/brcmfmac43340-sdio.predia-basic.txt
/lib/firmware/brcm/brcmfmac43430a0-sdio.ilife-S806.txt
/lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt
/lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt
/lib/firmware/brcm/brcmfmac4356-sdio.vamrs,rock960.txt
/lib/firmware/cadence/mhdp8546.bin
/lib/firmware/cxgb4/configs/t6-config-default.txt
/lib/firmware/cxgb4/t4fw-1.25.4.0.bin
/lib/firmware/cxgb4/t5fw-1.25.4.0.bin
/lib/firmware/cxgb4/t6fw-1.25.4.0.bin
/lib/firmware/cypress/cyfmac43012-sdio.bin
/lib/firmware/cypress/cyfmac43012-sdio.clm_blob
/lib/firmware/cypress/cyfmac43340-sdio.bin
/lib/firmware/cypress/cyfmac43362-sdio.bin
/lib/firmware/cypress/cyfmac4339-sdio.bin
/lib/firmware/cypress/cyfmac43430-sdio.bin
/lib/firmware/cypress/cyfmac43430-sdio.clm_blob
/lib/firmware/cypress/cyfmac43455-sdio.bin
/lib/firmware/cypress/cyfmac43455-sdio.clm_blob
/lib/firmware/cypress/cyfmac4354-sdio.bin
/lib/firmware/cypress/cyfmac4354-sdio.clm_blob
/lib/firmware/cypress/cyfmac4356-pcie.bin
/lib/firmware/cypress/cyfmac4356-pcie.clm_blob
/lib/firmware/cypress/cyfmac4356-sdio.bin
/lib/firmware/cypress/cyfmac4356-sdio.clm_blob
/lib/firmware/cypress/cyfmac43570-pcie.bin
/lib/firmware/cypress/cyfmac43570-pcie.clm_blob
/lib/firmware/cypress/cyfmac4373-sdio.bin
/lib/firmware/cypress/cyfmac4373-sdio.clm_blob
/lib/firmware/cypress/cyfmac54591-pcie.bin
/lib/firmware/cypress/cyfmac54591-pcie.clm_blob
/lib/firmware/i915/adlp_dmc_ver2_09.bin
/lib/firmware/i915/adlp_dmc_ver2_10.bin
/lib/firmware/i915/adls_dmc_ver2_01.bin
/lib/firmware/i915/bxt_guc_49.0.1.bin
/lib/firmware/i915/cml_guc_49.0.1.bin
/lib/firmware/i915/dg1_dmc_ver2_02.bin
/lib/firmware/i915/dg1_guc_49.0.1.bin
/lib/firmware/i915/dg1_huc_7.7.1.bin
/lib/firmware/i915/ehl_guc_49.0.1.bin
/lib/firmware/i915/glk_guc_49.0.1.bin
/lib/firmware/i915/icl_guc_49.0.1.bin
/lib/firmware/i915/kbl_guc_49.0.1.bin
/lib/firmware/i915/rkl_dmc_ver2_02.bin
/lib/firmware/i915/skl_guc_49.0.1.bin
/lib/firmware/i915/tgl_dmc_ver2_08.bin
/lib/firmware/i915/tgl_guc_49.0.1.bin
/lib/firmware/i915/tgl_huc_7.5.0.bin
/lib/firmware/intel/ibt-0041-0041.ddc
/lib/firmware/intel/ibt-0041-0041.sfi
/lib/firmware/intel/ibt-12-16.sfi
/lib/firmware/intel/ibt-17-16-1.sfi
/lib/firmware/intel/ibt-17-2.sfi
/lib/firmware/intel/ibt-18-16-1.sfi
/lib/firmware/intel/ibt-18-2.sfi
/lib/firmware/intel/ibt-19-0-0.sfi
/lib/firmware/intel/ibt-19-0-1.sfi
/lib/firmware/intel/ibt-19-0-4.sfi
/lib/firmware/intel/ibt-19-16-4.sfi
/lib/firmware/intel/ibt-19-240-1.sfi
/lib/firmware/intel/ibt-19-240-4.sfi
/lib/firmware/intel/ibt-19-32-0.sfi
/lib/firmware/intel/ibt-19-32-1.sfi
/lib/firmware/intel/ibt-19-32-4.sfi
/lib/firmware/intel/ibt-20-0-3.sfi
/lib/firmware/intel/ibt-20-1-3.sfi
/lib/firmware/intel/ibt-20-1-4.sfi
/lib/firmware/intel/ibt-hw-37.8.10-fw-22.50.19.14.f.bseq
/lib/firmware/intel/ice/ddp-comms/ice_comms-1.3.20.0.pkg
/lib/firmware/intel/ice/ddp/ice-1.3.16.0.pkg
/lib/firmware/iwlwifi-3168-29.ucode
/lib/firmware/iwlwifi-7265D-29.ucode
/lib/firmware/iwlwifi-8000C-36.ucode
/lib/firmware/iwlwifi-8265-36.ucode
/lib/firmware/iwlwifi-9000-pu-b0-jf-b0-46.ucode
/lib/firmware/iwlwifi-9260-th-b0-jf-b0-46.ucode
/lib/firmware/iwlwifi-cc-a0-59.ucode
/lib/firmware/iwlwifi-cc-a0-62.ucode
/lib/firmware/iwlwifi-Qu-b0-hr-b0-59.ucode
/lib/firmware/iwlwifi-Qu-b0-hr-b0-62.ucode
/lib/firmware/iwlwifi-Qu-b0-jf-b0-59.ucode
/lib/firmware/iwlwifi-Qu-b0-jf-b0-62.ucode
/lib/firmware/iwlwifi-Qu-c0-hr-b0-59.ucode
/lib/firmware/iwlwifi-Qu-c0-hr-b0-62.ucode
/lib/firmware/iwlwifi-Qu-c0-jf-b0-59.ucode
/lib/firmware/iwlwifi-Qu-c0-jf-b0-62.ucode
/lib/firmware/iwlwifi-QuZ-a0-hr-b0-59.ucode
/lib/firmware/iwlwifi-QuZ-a0-hr-b0-62.ucode
/lib/firmware/iwlwifi-QuZ-a0-jf-b0-59.ucode
/lib/firmware/iwlwifi-QuZ-a0-jf-b0-62.ucode
/lib/firmware/iwlwifi-ty-a0-gf-a0-59.ucode
/lib/firmware/iwlwifi-ty-a0-gf-a0-62.ucode
/lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm
/lib/firmware/lt9611uxc_fw.bin
/lib/firmware/mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin
/lib/firmware/mediatek/mt7615_n9.bin
/lib/firmware/mediatek/mt7663_n9_v3.bin
/lib/firmware/mediatek/mt7663pr2h.bin
/lib/firmware/mediatek/mt7915_rom_patch.bin
/lib/firmware/mediatek/mt7915_wa.bin
/lib/firmware/mediatek/mt7915_wm.bin
/lib/firmware/mediatek/mt8173/vpu_d.bin
/lib/firmware/mediatek/mt8173/vpu_p.bin
/lib/firmware/mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin
/lib/firmware/mediatek/WIFI_RAM_CODE_MT7961_1.bin
/lib/firmware/mellanox/mlxsw_spectrum-13.2007.1168.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.1036.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.1310.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.1312.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.2018.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.2304.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.2406.mfa2
/lib/firmware/mellanox/mlxsw_spectrum-13.2008.2438.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2007.1168.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.1036.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.1310.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.1312.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2018.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2304.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2406.mfa2
/lib/firmware/mellanox/mlxsw_spectrum2-29.2008.2438.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2007.1168.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.1036.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.1310.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.1312.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2018.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2304.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2406.mfa2
/lib/firmware/mellanox/mlxsw_spectrum3-30.2008.2438.mfa2
/lib/firmware/mrvl/prestera/mvsw_prestera_fw-v2.0.img
/lib/firmware/mrvl/prestera/mvsw_prestera_fw-v3.0.img
/lib/firmware/mrvl/sdsd8997_combo_v4.bin
/lib/firmware/netronome/flower/nic_AMDA0058.nffw
/lib/firmware/netronome/flower/nic_AMDA0096.nffw
/lib/firmware/netronome/flower/nic_AMDA0097.nffw
/lib/firmware/netronome/flower/nic_AMDA0099.nffw
/lib/firmware/nvidia/tegra186/xusb.bin
/lib/firmware/nvidia/tegra194/vic.bin
/lib/firmware/nvidia/tegra194/xusb.bin
/lib/firmware/nvidia/tegra210/xusb.bin
/lib/firmware/qca/crbtfw32.tlv
/lib/firmware/qca/crnv32.bin
/lib/firmware/qca/crnv32u.bin
/lib/firmware/qca/htbtfw20.tlv
/lib/firmware/qca/htnv20.bin
/lib/firmware/qca/nvm_usb_00000302.bin
/lib/firmware/qca/rampatch_usb_00000302.bin
/lib/firmware/qcom/a530_pfp.fw
/lib/firmware/qcom/a630_sqe.fw
/lib/firmware/qcom/a650_gmu.bin
/lib/firmware/qcom/a650_sqe.fw
/lib/firmware/qcom/a660_gmu.bin
/lib/firmware/qcom/a660_sqe.fw
/lib/firmware/qcom/sm8250/a650_zap.mbn
/lib/firmware/qcom/sm8250/adsp.mbn
/lib/firmware/qcom/sm8250/adspr.jsn
/lib/firmware/qcom/sm8250/adspua.jsn
/lib/firmware/qcom/sm8250/cdsp.mbn
/lib/firmware/qcom/sm8250/cdspr.jsn
/lib/firmware/qcom/venus-5.4/venus.b00
/lib/firmware/qcom/venus-5.4/venus.b01
/lib/firmware/qcom/venus-5.4/venus.b02
/lib/firmware/qcom/venus-5.4/venus.b03
/lib/firmware/qcom/venus-5.4/venus.mbn
/lib/firmware/qcom/venus-5.4/venus.mdt
/lib/firmware/qcom/vpu-1.0/venus.b00
/lib/firmware/qcom/vpu-1.0/venus.b01
/lib/firmware/qcom/vpu-1.0/venus.b02
/lib/firmware/qcom/vpu-1.0/venus.b03
/lib/firmware/qcom/vpu-1.0/venus.b04
/lib/firmware/qcom/vpu-1.0/venus.b05
/lib/firmware/qcom/vpu-1.0/venus.b06
/lib/firmware/qcom/vpu-1.0/venus.b07
/lib/firmware/qcom/vpu-1.0/venus.b08
/lib/firmware/qcom/vpu-1.0/venus.b09
/lib/firmware/qcom/vpu-1.0/venus.b10
/lib/firmware/qcom/vpu-1.0/venus.b19
/lib/firmware/qcom/vpu-1.0/venus.mbn
/lib/firmware/qcom/vpu-1.0/venus.mdt
/lib/firmware/qcom/vpu-2.0/venus.b00
/lib/firmware/qcom/vpu-2.0/venus.b01
/lib/firmware/qcom/vpu-2.0/venus.b02
/lib/firmware/qcom/vpu-2.0/venus.b03
/lib/firmware/qcom/vpu-2.0/venus.b04
/lib/firmware/qcom/vpu-2.0/venus.b05
/lib/firmware/qcom/vpu-2.0/venus.b06
/lib/firmware/qcom/vpu-2.0/venus.b07
/lib/firmware/qcom/vpu-2.0/venus.b08
/lib/firmware/qcom/vpu-2.0/venus.b09
/lib/firmware/qcom/vpu-2.0/venus.b10
/lib/firmware/qcom/vpu-2.0/venus.b19
/lib/firmware/qcom/vpu-2.0/venus.mbn
/lib/firmware/qcom/vpu-2.0/venus.mdt
/lib/firmware/rtl_bt/rtl8821c_fw.bin
/lib/firmware/rtl_bt/rtl8822cs_fw.bin
/lib/firmware/rtl_bt/rtl8822cu_fw.bin
/lib/firmware/rtl_bt/rtl8852au_config.bin
/lib/firmware/rtl_bt/rtl8852au_fw.bin
/lib/firmware/rtl_nic/rtl8125b-1.fw
/lib/firmware/rtl_nic/rtl8125b-2.fw
/lib/firmware/rtl_nic/rtl8153c-1.fw
/lib/firmware/rtl_nic/rtl8156a-2.fw
/lib/firmware/rtl_nic/rtl8156b-2.fw
/lib/firmware/rtlwifi/rtl8192cufw_A.bin
/lib/firmware/rtlwifi/rtl8192cufw_B.bin
/lib/firmware/rtlwifi/rtl8192cufw_TMSC.bin
/lib/firmware/rtw88/rtw8821c_fw.bin
/lib/firmware/rtw88/rtw8822c_fw.bin
/lib/firmware/rtw88/rtw8822c_wow_fw.bin
/lib/firmware/rtw89/rtw8852a_fw.bin
/lib/firmware/silabs/wfm_wf200_C0.sec
/lib/firmware/ti-connectivity/wl18xx-fw-4.bin
/lib/firmware/ti/vpdma-1b8.bin

View File

@@ -0,0 +1 @@
../../../common/nettle

View File

@@ -0,0 +1 @@
../../../common/pcre2

View File

@@ -0,0 +1 @@
../../../common/perl-CGI

View File

@@ -0,0 +1 @@
../../../common/perl-Data-UUID

View File

@@ -0,0 +1 @@
../../../common/qpdf

View File

@@ -0,0 +1 @@
../../../common/rng-tools

View File

@@ -0,0 +1 @@
../../../common/smartmontools

View File

@@ -0,0 +1 @@
../../../common/vnstat

View File

@@ -0,0 +1 @@
../../../common/web-user-interface

View File

@@ -0,0 +1 @@
../../../../common/x86_64/dmidecode

View File

@@ -0,0 +1 @@
../../../../common/x86_64/intel-microcode

View File

@@ -0,0 +1 @@
../../../common/zd1211-firmware

View File

@@ -0,0 +1 @@
../../../common/zstd

Some files were not shown because too many files have changed in this diff Show More