mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-15 13:32:59 +02:00
Merge branch 'next'
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
@@ -1 +1 @@
|
||||
etc/bird.conf
|
||||
/etc/bird.conf
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -34,6 +34,9 @@ our $used_rulefiles_file = "$settingsdir/suricata-used-rulefiles.yaml";
|
||||
# File where the addresses of the homenet are stored.
|
||||
our $homenet_file = "$settingsdir/suricata-homenet.yaml";
|
||||
|
||||
# File where the addresses of the used DNS servers are stored.
|
||||
our $dns_servers_file = "$settingsdir/suricata-dns-servers.yaml";
|
||||
|
||||
# File which contains the enabled sids.
|
||||
our $enabled_sids_file = "$settingsdir/oinkmaster-enabled-sids.conf";
|
||||
|
||||
@@ -695,6 +698,65 @@ sub generate_home_net_file() {
|
||||
close(FILE);
|
||||
}
|
||||
|
||||
#
|
||||
# Function to generate and write the file which contains the configured and used DNS servers.
|
||||
#
|
||||
sub generate_dns_servers_file() {
|
||||
# Open file which contains the current used DNS configuration.
|
||||
open (FILE, "${General::swroot}/red/dns") or die "Could not read DNS configuration from ${General::swroot}/red/dns. $!\n";
|
||||
|
||||
# Read-in whole file content and store it in a temporary array.
|
||||
my @file_content = <FILE>;
|
||||
|
||||
# Close file handle.
|
||||
close(FILE);
|
||||
|
||||
# Format dns servers declaration.
|
||||
my $line = "\"\[";
|
||||
|
||||
# Loop through the array which contains the file content.
|
||||
foreach my $server (@file_content) {
|
||||
# Remove newlines.
|
||||
chomp($server);
|
||||
|
||||
# Check if the current DNS configuration is using the local recursor mode.
|
||||
if ($server eq "local recursor") {
|
||||
# The responsible DNS servers on red are directly used, and because we are not able
|
||||
# to specify each single DNS server address here, we currently have to thread each
|
||||
# address which is not part of the HOME_NET as possible DNS server.
|
||||
$line = "$line" . "!\$HOME_NET";
|
||||
} else {
|
||||
# Add the DNS server to the line.
|
||||
$line = "$line" . "$server";
|
||||
}
|
||||
|
||||
# Check if the current DNS server was the last in the array.
|
||||
if ($server eq $file_content[-1]) {
|
||||
# Close the line.
|
||||
$line = "$line" . "\]\"";
|
||||
} else {
|
||||
# Add "," for the next DNS server.
|
||||
$line = "$line" . "\,";
|
||||
}
|
||||
}
|
||||
|
||||
# Open file to store the used DNS server addresses.
|
||||
open(FILE, ">$dns_servers_file") or die "Could not open $dns_servers_file. $!\n";
|
||||
|
||||
# Print yaml header.
|
||||
print FILE "%YAML 1.1\n";
|
||||
print FILE "---\n\n";
|
||||
|
||||
# Print notice about autogenerated file.
|
||||
print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
|
||||
|
||||
# Print the generated DNS declaration to the file.
|
||||
print FILE "DNS_SERVERS:\t$line\n";
|
||||
|
||||
# Close file handle.
|
||||
close(FILE);
|
||||
}
|
||||
|
||||
#
|
||||
## Function to generate and write the file for used rulefiles.
|
||||
#
|
||||
|
||||
@@ -7,6 +7,7 @@ LogSyslog yes
|
||||
PidFile /var/run/clamav/freshclam.pid
|
||||
|
||||
DatabaseMirror database.clamav.net
|
||||
ReceiveTimeout 600
|
||||
|
||||
ScriptedUpdates yes
|
||||
|
||||
|
||||
@@ -10,11 +10,13 @@ set_mtu()
|
||||
# test for buggy nic that lose link at mtu set...
|
||||
carrier=`cat /sys/class/net/$interface/carrier`
|
||||
if [ "$carrier" == "0" ]; then
|
||||
syslog info "Warning! Carrier loss after MTU set. Reinit ..."
|
||||
syslog info "Warning! Carrier loss after MTU set. Reinit needed..."
|
||||
ip link set "$interface" down
|
||||
ip link set "$interface" up
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
if [ -n "$new_interface_mtu" ] && $if_up; then
|
||||
if [ $RED_DHCP_FORCE_MTU -ge 576 ]; then
|
||||
new_interface_mtu=$RED_DHCP_FORCE_MTU
|
||||
|
||||
@@ -72,6 +72,9 @@ my $netsettings = "${General::swroot}/ethernet/settings";
|
||||
&General::readhasharray("$configsrvgrp", \%customservicegrp);
|
||||
&General::get_aliases(\%aliases);
|
||||
|
||||
# Get all available GeoIP locations.
|
||||
my @available_geoip_locations = &get_geoip_locations();
|
||||
|
||||
sub get_srv_prot
|
||||
{
|
||||
my $val=shift;
|
||||
@@ -458,17 +461,23 @@ sub get_address
|
||||
|
||||
# Handle rule options with GeoIP as source.
|
||||
} elsif ($key eq "cust_geoip_src") {
|
||||
# Get external interface.
|
||||
my $external_interface = &get_external_interface();
|
||||
# Check if the given GeoIP location is available.
|
||||
if(&geoip_location_is_available($value)) {
|
||||
# Get external interface.
|
||||
my $external_interface = &get_external_interface();
|
||||
|
||||
push(@ret, ["-m geoip --src-cc $value", "$external_interface"]);
|
||||
push(@ret, ["-m geoip --src-cc $value", "$external_interface"]);
|
||||
}
|
||||
|
||||
# Handle rule options with GeoIP as target.
|
||||
} elsif ($key eq "cust_geoip_tgt") {
|
||||
# Get external interface.
|
||||
my $external_interface = &get_external_interface();
|
||||
# Check if the given GeoIP location is available.
|
||||
if(&geoip_location_is_available($value)) {
|
||||
# Get external interface.
|
||||
my $external_interface = &get_external_interface();
|
||||
|
||||
push(@ret, ["-m geoip --dst-cc $value", "$external_interface"]);
|
||||
push(@ret, ["-m geoip --dst-cc $value", "$external_interface"]);
|
||||
}
|
||||
|
||||
# If nothing was selected, we assume "any".
|
||||
} else {
|
||||
@@ -612,4 +621,23 @@ sub get_geoip_locations() {
|
||||
return &GeoIP::get_geoip_locations();
|
||||
}
|
||||
|
||||
# Function to check if a database of a given GeoIP location is
|
||||
# available.
|
||||
sub geoip_location_is_available($) {
|
||||
my ($location) = @_;
|
||||
|
||||
# Loop through the global array of available GeoIP locations.
|
||||
foreach my $geoip_location (@available_geoip_locations) {
|
||||
# Check if the current processed location is the searched one.
|
||||
if($location eq $geoip_location) {
|
||||
# If it is part of the array, return "1" - True.
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
# If we got here, the given location is not part of the array of available
|
||||
# zones. Return nothing.
|
||||
return;
|
||||
}
|
||||
|
||||
return 1;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
SSLEngine on
|
||||
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
|
||||
SSLCipherSuite TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256
|
||||
SSLCipherSuite AESGCM+EECDH:CHACHA20+EECDH:@STRENGTH:+aRSA
|
||||
SSLHonorCipherOrder on
|
||||
SSLCompression off
|
||||
SSLSessionTickets off
|
||||
@@ -22,6 +22,8 @@
|
||||
|
||||
Header always set X-Content-Type-Options nosniff
|
||||
Header always set Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'"
|
||||
Header always set Referrer-Policy strict-origin
|
||||
Header always set X-Frame-Options sameorigin
|
||||
|
||||
<Directory /srv/web/ipfire/html>
|
||||
Options ExecCGI
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
|
||||
Header always set X-Content-Type-Options nosniff
|
||||
Header always set Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'"
|
||||
Header always set Referrer-Policy strict-origin
|
||||
Header always set X-Frame-Options sameorigin
|
||||
|
||||
<Directory /srv/web/ipfire/html>
|
||||
Options ExecCGI
|
||||
|
||||
501
config/libvirt/libvirtd.conf
Normal file
501
config/libvirt/libvirtd.conf
Normal file
@@ -0,0 +1,501 @@
|
||||
# Master libvirt daemon configuration file
|
||||
#
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# Network connectivity controls
|
||||
#
|
||||
|
||||
# Flag listening for secure TLS connections on the public TCP/IP port.
|
||||
# NB, must pass the --listen flag to the libvirtd process for this to
|
||||
# have any effect.
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# It is necessary to setup a CA and issue server certificates before
|
||||
# using this capability.
|
||||
#
|
||||
# This is enabled by default, uncomment this to disable it
|
||||
listen_tls = 0
|
||||
|
||||
# Listen for unencrypted TCP connections on the public TCP/IP port.
|
||||
# NB, must pass the --listen flag to the libvirtd process for this to
|
||||
# have any effect.
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# Using the TCP socket requires SASL authentication by default. Only
|
||||
# SASL mechanisms which support data encryption are allowed. This is
|
||||
# DIGEST_MD5 and GSSAPI (Kerberos5)
|
||||
#
|
||||
# This is disabled by default, uncomment this to enable it.
|
||||
#listen_tcp = 1
|
||||
|
||||
|
||||
|
||||
# Override the port for accepting secure TLS connections
|
||||
# This can be a port number, or service name
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation with systemd version >= 227
|
||||
#
|
||||
#tls_port = "16514"
|
||||
|
||||
# Override the port for accepting insecure TCP connections
|
||||
# This can be a port number, or service name
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation with systemd version >= 227
|
||||
#
|
||||
#tcp_port = "16509"
|
||||
|
||||
|
||||
# Override the default configuration which binds to all network
|
||||
# interfaces. This can be a numeric IPv4/6 address, or hostname
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# If the libvirtd service is started in parallel with network
|
||||
# startup (e.g. with systemd), binding to addresses other than
|
||||
# the wildcards (0.0.0.0/::) might not be available yet.
|
||||
#
|
||||
listen_addr = "127.0.0.1"
|
||||
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# UNIX socket access controls
|
||||
#
|
||||
|
||||
# Set the UNIX domain socket group ownership. This can be used to
|
||||
# allow a 'trusted' set of users access to management capabilities
|
||||
# without becoming root.
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# This is restricted to 'root' by default.
|
||||
unix_sock_group = "libvirt-remote"
|
||||
|
||||
# Set the UNIX socket permissions for the R/O socket. This is used
|
||||
# for monitoring VM status only
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# Default allows any user. If setting group ownership, you may want to
|
||||
# restrict this too.
|
||||
unix_sock_ro_perms = "0770"
|
||||
|
||||
# Set the UNIX socket permissions for the R/W socket. This is used
|
||||
# for full management of VMs
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# Default allows only root. If PolicyKit is enabled on the socket,
|
||||
# the default will change to allow everyone (eg, 0777)
|
||||
#
|
||||
# If not using PolicyKit and setting group ownership for access
|
||||
# control, then you may want to relax this too.
|
||||
unix_sock_rw_perms = "0770"
|
||||
|
||||
# Set the UNIX socket permissions for the admin interface socket.
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation.
|
||||
#
|
||||
# Default allows only owner (root), do not change it unless you are
|
||||
# sure to whom you are exposing the access to.
|
||||
#unix_sock_admin_perms = "0700"
|
||||
|
||||
# Set the name of the directory in which sockets will be found/created.
|
||||
#
|
||||
# This setting is not required or honoured if using systemd socket
|
||||
# activation with systemd version >= 227
|
||||
#
|
||||
#unix_sock_dir = "/var/run/libvirt"
|
||||
|
||||
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# Authentication.
|
||||
#
|
||||
# - none: do not perform auth checks. If you can connect to the
|
||||
# socket you are allowed. This is suitable if there are
|
||||
# restrictions on connecting to the socket (eg, UNIX
|
||||
# socket permissions), or if there is a lower layer in
|
||||
# the network providing auth (eg, TLS/x509 certificates)
|
||||
#
|
||||
# - sasl: use SASL infrastructure. The actual auth scheme is then
|
||||
# controlled from /etc/sasl2/libvirt.conf. For the TCP
|
||||
# socket only GSSAPI & DIGEST-MD5 mechanisms will be used.
|
||||
# For non-TCP or TLS sockets, any scheme is allowed.
|
||||
#
|
||||
# - polkit: use PolicyKit to authenticate. This is only suitable
|
||||
# for use on the UNIX sockets. The default policy will
|
||||
# require a user to supply their own password to gain
|
||||
# full read/write access (aka sudo like), while anyone
|
||||
# is allowed read/only access.
|
||||
#
|
||||
# Set an authentication scheme for UNIX read-only sockets
|
||||
# By default socket permissions allow anyone to connect
|
||||
#
|
||||
# To restrict monitoring of domains you may wish to enable
|
||||
# an authentication mechanism here
|
||||
#auth_unix_ro = "none"
|
||||
|
||||
# Set an authentication scheme for UNIX read-write sockets
|
||||
# By default socket permissions only allow root. If PolicyKit
|
||||
# support was compiled into libvirt, the default will be to
|
||||
# use 'polkit' auth.
|
||||
#
|
||||
# If the unix_sock_rw_perms are changed you may wish to enable
|
||||
# an authentication mechanism here
|
||||
#auth_unix_rw = "none"
|
||||
|
||||
# Change the authentication scheme for TCP sockets.
|
||||
#
|
||||
# If you don't enable SASL, then all TCP traffic is cleartext.
|
||||
# Don't do this outside of a dev/test scenario. For real world
|
||||
# use, always enable SASL and use the GSSAPI or DIGEST-MD5
|
||||
# mechanism in /etc/sasl2/libvirt.conf
|
||||
#auth_tcp = "sasl"
|
||||
|
||||
# Change the authentication scheme for TLS sockets.
|
||||
#
|
||||
# TLS sockets already have encryption provided by the TLS
|
||||
# layer, and limited authentication is done by certificates
|
||||
#
|
||||
# It is possible to make use of any SASL authentication
|
||||
# mechanism as well, by using 'sasl' for this option
|
||||
#auth_tls = "none"
|
||||
|
||||
|
||||
# Change the API access control scheme
|
||||
#
|
||||
# By default an authenticated user is allowed access
|
||||
# to all APIs. Access drivers can place restrictions
|
||||
# on this. By default the 'nop' driver is enabled,
|
||||
# meaning no access control checks are done once a
|
||||
# client has authenticated with libvirtd
|
||||
#
|
||||
#access_drivers = [ "polkit" ]
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# TLS x509 certificate configuration
|
||||
#
|
||||
|
||||
# Use of TLS requires that x509 certificates be issued. The default locations
|
||||
# for the certificate files is as follows:
|
||||
#
|
||||
# /etc/pki/CA/cacert.pem - The CA master certificate
|
||||
# /etc/pki/libvirt/servercert.pem - The server certificate signed with
|
||||
# the cacert.pem
|
||||
# /etc/pki/libvirt/private/serverkey.pem - The server private key
|
||||
#
|
||||
# It is possible to override the default locations by altering the 'key_file',
|
||||
# 'cert_file', and 'ca_file' values and uncommenting them below.
|
||||
#
|
||||
# NB, overriding the default of one location requires uncommenting and
|
||||
# possibly additionally overriding the other settings.
|
||||
#
|
||||
|
||||
# Override the default server key file path
|
||||
#
|
||||
#key_file = "/etc/pki/libvirt/private/serverkey.pem"
|
||||
|
||||
# Override the default server certificate file path
|
||||
#
|
||||
#cert_file = "/etc/pki/libvirt/servercert.pem"
|
||||
|
||||
# Override the default CA certificate path
|
||||
#
|
||||
#ca_file = "/etc/pki/CA/cacert.pem"
|
||||
|
||||
# Specify a certificate revocation list.
|
||||
#
|
||||
# Defaults to not using a CRL, uncomment to enable it
|
||||
#crl_file = "/etc/pki/CA/crl.pem"
|
||||
|
||||
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# Authorization controls
|
||||
#
|
||||
|
||||
|
||||
# Flag to disable verification of our own server certificates
|
||||
#
|
||||
# When libvirtd starts it performs some sanity checks against
|
||||
# its own certificates.
|
||||
#
|
||||
# Default is to always run sanity checks. Uncommenting this
|
||||
# will disable sanity checks which is not a good idea
|
||||
#tls_no_sanity_certificate = 1
|
||||
|
||||
# Flag to disable verification of client certificates
|
||||
#
|
||||
# Client certificate verification is the primary authentication mechanism.
|
||||
# Any client which does not present a certificate signed by the CA
|
||||
# will be rejected.
|
||||
#
|
||||
# Default is to always verify. Uncommenting this will disable
|
||||
# verification - make sure an IP whitelist is set
|
||||
#tls_no_verify_certificate = 1
|
||||
|
||||
|
||||
# A whitelist of allowed x509 Distinguished Names
|
||||
# This list may contain wildcards such as
|
||||
#
|
||||
# "C=GB,ST=London,L=London,O=Red Hat,CN=*"
|
||||
#
|
||||
# See the POSIX fnmatch function for the format of the wildcards.
|
||||
#
|
||||
# NB If this is an empty list, no client can connect, so comment out
|
||||
# entirely rather than using empty list to disable these checks
|
||||
#
|
||||
# By default, no DN's are checked
|
||||
#tls_allowed_dn_list = ["DN1", "DN2"]
|
||||
|
||||
|
||||
# A whitelist of allowed SASL usernames. The format for username
|
||||
# depends on the SASL authentication mechanism. Kerberos usernames
|
||||
# look like username@REALM
|
||||
#
|
||||
# This list may contain wildcards such as
|
||||
#
|
||||
# "*@EXAMPLE.COM"
|
||||
#
|
||||
# See the POSIX fnmatch function for the format of the wildcards.
|
||||
#
|
||||
# NB If this is an empty list, no client can connect, so comment out
|
||||
# entirely rather than using empty list to disable these checks
|
||||
#
|
||||
# By default, no Username's are checked
|
||||
#sasl_allowed_username_list = ["joe@EXAMPLE.COM", "fred@EXAMPLE.COM" ]
|
||||
|
||||
|
||||
# Override the compile time default TLS priority string. The
|
||||
# default is usually "NORMAL" unless overridden at build time.
|
||||
# Only set this is it is desired for libvirt to deviate from
|
||||
# the global default settings.
|
||||
#
|
||||
#tls_priority="NORMAL"
|
||||
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# Processing controls
|
||||
#
|
||||
|
||||
# The maximum number of concurrent client connections to allow
|
||||
# over all sockets combined.
|
||||
#max_clients = 5000
|
||||
|
||||
# The maximum length of queue of connections waiting to be
|
||||
# accepted by the daemon. Note, that some protocols supporting
|
||||
# retransmission may obey this so that a later reattempt at
|
||||
# connection succeeds.
|
||||
#max_queued_clients = 1000
|
||||
|
||||
# The maximum length of queue of accepted but not yet
|
||||
# authenticated clients. The default value is 20. Set this to
|
||||
# zero to turn this feature off.
|
||||
#max_anonymous_clients = 20
|
||||
|
||||
# The minimum limit sets the number of workers to start up
|
||||
# initially. If the number of active clients exceeds this,
|
||||
# then more threads are spawned, up to max_workers limit.
|
||||
# Typically you'd want max_workers to equal maximum number
|
||||
# of clients allowed
|
||||
#min_workers = 5
|
||||
#max_workers = 20
|
||||
|
||||
|
||||
# The number of priority workers. If all workers from above
|
||||
# pool are stuck, some calls marked as high priority
|
||||
# (notably domainDestroy) can be executed in this pool.
|
||||
#prio_workers = 5
|
||||
|
||||
# Limit on concurrent requests from a single client
|
||||
# connection. To avoid one client monopolizing the server
|
||||
# this should be a small fraction of the global max_workers
|
||||
# parameter.
|
||||
#max_client_requests = 5
|
||||
|
||||
# Same processing controls, but this time for the admin interface.
|
||||
# For description of each option, be so kind to scroll few lines
|
||||
# upwards.
|
||||
|
||||
#admin_min_workers = 1
|
||||
#admin_max_workers = 5
|
||||
#admin_max_clients = 5
|
||||
#admin_max_queued_clients = 5
|
||||
#admin_max_client_requests = 5
|
||||
|
||||
#################################################################
|
||||
#
|
||||
# Logging controls
|
||||
#
|
||||
|
||||
# Logging level: 4 errors, 3 warnings, 2 information, 1 debug
|
||||
# basically 1 will log everything possible
|
||||
#
|
||||
# WARNING: USE OF THIS IS STRONGLY DISCOURAGED.
|
||||
#
|
||||
# WARNING: It outputs too much information to practically read.
|
||||
# WARNING: The "log_filters" setting is recommended instead.
|
||||
#
|
||||
# WARNING: Journald applies rate limiting of messages and so libvirt
|
||||
# WARNING: will limit "log_level" to only allow values 3 or 4 if
|
||||
# WARNING: journald is the current output.
|
||||
#
|
||||
# WARNING: USE OF THIS IS STRONGLY DISCOURAGED.
|
||||
#log_level = 3
|
||||
|
||||
# Logging filters:
|
||||
# A filter allows to select a different logging level for a given category
|
||||
# of logs. The format for a filter is one of:
|
||||
#
|
||||
# level:match
|
||||
# level:+match
|
||||
#
|
||||
# where 'match' is a string which is matched against the category
|
||||
# given in the VIR_LOG_INIT() at the top of each libvirt source
|
||||
# file, e.g., "remote", "qemu", or "util.json". The 'match' in the
|
||||
# filter matches using shell wildcard syntax (see 'man glob(7)').
|
||||
# The 'match' is always treated as a substring match. IOW a match
|
||||
# string 'foo' is equivalent to '*foo*'.
|
||||
#
|
||||
# If 'match' contains the optional "+" prefix, it tells libvirt
|
||||
# to log stack trace for each message matching name.
|
||||
#
|
||||
# 'level' is the minimal level where matching messages should
|
||||
# be logged:
|
||||
#
|
||||
# 1: DEBUG
|
||||
# 2: INFO
|
||||
# 3: WARNING
|
||||
# 4: ERROR
|
||||
#
|
||||
# Multiple filters can be defined in a single @log_filters, they just need
|
||||
# to be separated by spaces. Note that libvirt performs "first" match, i.e.
|
||||
# if there are concurrent filters, the first one that matches will be applied,
|
||||
# given the order in @log_filters.
|
||||
#
|
||||
# A typical need is to capture information from a hypervisor driver,
|
||||
# public API entrypoints and some of the utility code. Some utility
|
||||
# code is very verbose and is generally not desired. Taking the QEMU
|
||||
# hypervisor as an example, a suitable filter string for debugging
|
||||
# might be to turn off object, json & event logging, but enable the
|
||||
# rest of the util code:
|
||||
#
|
||||
#log_filters="1:qemu 1:libvirt 4:object 4:json 4:event 1:util"
|
||||
|
||||
# Logging outputs:
|
||||
# An output is one of the places to save logging information
|
||||
# The format for an output can be:
|
||||
# level:stderr
|
||||
# output goes to stderr
|
||||
# level:syslog:name
|
||||
# use syslog for the output and use the given name as the ident
|
||||
# level:file:file_path
|
||||
# output to a file, with the given filepath
|
||||
# level:journald
|
||||
# output to journald logging system
|
||||
# In all cases 'level' is the minimal priority, acting as a filter
|
||||
# 1: DEBUG
|
||||
# 2: INFO
|
||||
# 3: WARNING
|
||||
# 4: ERROR
|
||||
#
|
||||
# Multiple outputs can be defined, they just need to be separated by spaces.
|
||||
# e.g. to log all warnings and errors to syslog under the libvirtd ident:
|
||||
#log_outputs="3:syslog:libvirtd"
|
||||
|
||||
|
||||
##################################################################
|
||||
#
|
||||
# Auditing
|
||||
#
|
||||
# This setting allows usage of the auditing subsystem to be altered:
|
||||
#
|
||||
# audit_level == 0 -> disable all auditing
|
||||
# audit_level == 1 -> enable auditing, only if enabled on host (default)
|
||||
# audit_level == 2 -> enable auditing, and exit if disabled on host
|
||||
#
|
||||
#audit_level = 2
|
||||
#
|
||||
# If set to 1, then audit messages will also be sent
|
||||
# via libvirt logging infrastructure. Defaults to 0
|
||||
#
|
||||
#audit_logging = 1
|
||||
|
||||
###################################################################
|
||||
# UUID of the host:
|
||||
# Host UUID is read from one of the sources specified in host_uuid_source.
|
||||
#
|
||||
# - 'smbios': fetch the UUID from 'dmidecode -s system-uuid'
|
||||
# - 'machine-id': fetch the UUID from /etc/machine-id
|
||||
#
|
||||
# The host_uuid_source default is 'smbios'. If 'dmidecode' does not provide
|
||||
# a valid UUID a temporary UUID will be generated.
|
||||
#
|
||||
# Another option is to specify host UUID in host_uuid.
|
||||
#
|
||||
# Keep the format of the example UUID below. UUID must not have all digits
|
||||
# be the same.
|
||||
|
||||
# NB This default all-zeros UUID will not work. Replace
|
||||
# it with the output of the 'uuidgen' command and then
|
||||
# uncomment this entry
|
||||
#host_uuid = "00000000-0000-0000-0000-000000000000"
|
||||
#host_uuid_source = "smbios"
|
||||
|
||||
###################################################################
|
||||
# Keepalive protocol:
|
||||
# This allows libvirtd to detect broken client connections or even
|
||||
# dead clients. A keepalive message is sent to a client after
|
||||
# keepalive_interval seconds of inactivity to check if the client is
|
||||
# still responding; keepalive_count is a maximum number of keepalive
|
||||
# messages that are allowed to be sent to the client without getting
|
||||
# any response before the connection is considered broken. In other
|
||||
# words, the connection is automatically closed approximately after
|
||||
# keepalive_interval * (keepalive_count + 1) seconds since the last
|
||||
# message received from the client. If keepalive_interval is set to
|
||||
# -1, libvirtd will never send keepalive requests; however clients
|
||||
# can still send them and the daemon will send responses. When
|
||||
# keepalive_count is set to 0, connections will be automatically
|
||||
# closed after keepalive_interval seconds of inactivity without
|
||||
# sending any keepalive messages.
|
||||
#
|
||||
#keepalive_interval = 5
|
||||
#keepalive_count = 5
|
||||
|
||||
#
|
||||
# These configuration options are no longer used. There is no way to
|
||||
# restrict such clients from connecting since they first need to
|
||||
# connect in order to ask for keepalive.
|
||||
#
|
||||
#keepalive_required = 1
|
||||
#admin_keepalive_required = 1
|
||||
|
||||
# Keepalive settings for the admin interface
|
||||
#admin_keepalive_interval = 5
|
||||
#admin_keepalive_count = 5
|
||||
|
||||
###################################################################
|
||||
# Open vSwitch:
|
||||
# This allows to specify a timeout for openvswitch calls made by
|
||||
# libvirt. The ovs-vsctl utility is used for the configuration and
|
||||
# its timeout option is set by default to 5 seconds to avoid
|
||||
# potential infinite waits blocking libvirt.
|
||||
#
|
||||
#ovs_timeout = 5
|
||||
@@ -47,6 +47,7 @@ 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/05-update-dns-forwarders
|
||||
@@ -62,6 +63,7 @@ etc/rc.d/init.d/networking/red.up/30-ddns
|
||||
etc/rc.d/init.d/networking/red.up/50-ipsec
|
||||
etc/rc.d/init.d/networking/red.up/50-ovpn
|
||||
etc/rc.d/init.d/networking/red.up/98-leds
|
||||
etc/rc.d/init.d/networking/red.up/99-beep
|
||||
etc/rc.d/init.d/networking/red.up/99-fireinfo
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/init.d/networking/red.up/99-pakfire-update
|
||||
|
||||
@@ -800,6 +800,7 @@ usr/lib/python2.7/dis.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.py
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyo
|
||||
#usr/lib/python2.7/distutils/tests/includetest.rst
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.py
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyc
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyo
|
||||
@@ -1463,8 +1464,8 @@ usr/lib/python2.7/encodings/zlib_codec.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyo
|
||||
#usr/lib/python2.7/ensurepip/_bundled
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-9.0.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-39.0.1-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.py
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyc
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyo
|
||||
@@ -1926,7 +1927,7 @@ usr/lib/python2.7/json/tool.pyc
|
||||
usr/lib/python2.7/keyword.pyc
|
||||
#usr/lib/python2.7/keyword.pyo
|
||||
#usr/lib/python2.7/lib-dynload
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.15-py2.7.egg-info
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.17-py2.7.egg-info
|
||||
usr/lib/python2.7/lib-dynload/_bisect.so
|
||||
usr/lib/python2.7/lib-dynload/_bsddb.so
|
||||
usr/lib/python2.7/lib-dynload/_codecs_cn.so
|
||||
@@ -2043,6 +2044,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyo
|
||||
@@ -2100,9 +2104,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/turtle.pyo
|
||||
#usr/lib/python2.7/lib2to3
|
||||
#usr/lib/python2.7/lib2to3/Grammar.txt
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar.txt
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/__init__.py
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyc
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyo
|
||||
@@ -2793,9 +2797,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/badsyntax_future8.py
|
||||
#usr/lib/python2.7/test/badsyntax_future9.py
|
||||
#usr/lib/python2.7/test/badsyntax_nocaret.py
|
||||
#usr/lib/python2.7/test/bisect.py
|
||||
#usr/lib/python2.7/test/bisect.pyc
|
||||
#usr/lib/python2.7/test/bisect.pyo
|
||||
#usr/lib/python2.7/test/bisect_cmd.py
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyc
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyo
|
||||
#usr/lib/python2.7/test/capath
|
||||
#usr/lib/python2.7/test/capath/0e4015b9.0
|
||||
#usr/lib/python2.7/test/capath/4e1295a3.0
|
||||
@@ -2803,6 +2807,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/capath/6e88d7b8.0
|
||||
#usr/lib/python2.7/test/capath/99d0fa06.0
|
||||
#usr/lib/python2.7/test/capath/ce7b8643.0
|
||||
#usr/lib/python2.7/test/capath/efa5f9c3.0
|
||||
#usr/lib/python2.7/test/cfgparser.1
|
||||
#usr/lib/python2.7/test/cjkencodings
|
||||
#usr/lib/python2.7/test/cjkencodings/big5-utf8.txt
|
||||
@@ -2985,7 +2990,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegral.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegralx.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/xor.decTest
|
||||
#usr/lib/python2.7/test/dh1024.pem
|
||||
#usr/lib/python2.7/test/doctest_aliases.py
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyc
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyo
|
||||
@@ -2994,6 +2998,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/double_const.pyo
|
||||
#usr/lib/python2.7/test/empty.vbs
|
||||
#usr/lib/python2.7/test/exception_hierarchy.txt
|
||||
#usr/lib/python2.7/test/ffdh3072.pem
|
||||
#usr/lib/python2.7/test/floating_points.txt
|
||||
#usr/lib/python2.7/test/fork_wait.py
|
||||
#usr/lib/python2.7/test/fork_wait.pyc
|
||||
@@ -3139,6 +3144,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.py
|
||||
#usr/lib/python2.7/test/symlink_support.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.pyo
|
||||
#usr/lib/python2.7/test/talos-2019-0758.pem
|
||||
#usr/lib/python2.7/test/test_MimeWriter.py
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyc
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyo
|
||||
@@ -3214,6 +3220,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.py
|
||||
#usr/lib/python2.7/test/test_bastion.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.pyo
|
||||
#usr/lib/python2.7/test/test_bdb.py
|
||||
#usr/lib/python2.7/test/test_bdb.pyc
|
||||
#usr/lib/python2.7/test/test_bdb.pyo
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.py
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyc
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyo
|
||||
@@ -4395,7 +4404,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.py
|
||||
#usr/lib/python2.7/test/win_console_handler.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.pyo
|
||||
#usr/lib/python2.7/test/wrongcert.pem
|
||||
#usr/lib/python2.7/test/xmltestdata
|
||||
#usr/lib/python2.7/test/xmltestdata/expat224_utf8_bug.xml
|
||||
#usr/lib/python2.7/test/xmltestdata/simple-ns.xml
|
||||
|
||||
@@ -47,6 +47,7 @@ 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/05-update-dns-forwarders
|
||||
@@ -62,6 +63,7 @@ etc/rc.d/init.d/networking/red.up/30-ddns
|
||||
etc/rc.d/init.d/networking/red.up/50-ipsec
|
||||
etc/rc.d/init.d/networking/red.up/50-ovpn
|
||||
etc/rc.d/init.d/networking/red.up/98-leds
|
||||
etc/rc.d/init.d/networking/red.up/99-beep
|
||||
etc/rc.d/init.d/networking/red.up/99-fireinfo
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/init.d/networking/red.up/99-pakfire-update
|
||||
|
||||
@@ -800,6 +800,7 @@ usr/lib/python2.7/dis.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.py
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyo
|
||||
#usr/lib/python2.7/distutils/tests/includetest.rst
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.py
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyc
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyo
|
||||
@@ -1463,8 +1464,8 @@ usr/lib/python2.7/encodings/zlib_codec.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyo
|
||||
#usr/lib/python2.7/ensurepip/_bundled
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-9.0.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-39.0.1-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.py
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyc
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyo
|
||||
@@ -1926,7 +1927,7 @@ usr/lib/python2.7/json/tool.pyc
|
||||
usr/lib/python2.7/keyword.pyc
|
||||
#usr/lib/python2.7/keyword.pyo
|
||||
#usr/lib/python2.7/lib-dynload
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.15-py2.7.egg-info
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.17-py2.7.egg-info
|
||||
usr/lib/python2.7/lib-dynload/_bisect.so
|
||||
usr/lib/python2.7/lib-dynload/_bsddb.so
|
||||
usr/lib/python2.7/lib-dynload/_codecs_cn.so
|
||||
@@ -2045,6 +2046,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyo
|
||||
@@ -2102,9 +2106,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/turtle.pyo
|
||||
#usr/lib/python2.7/lib2to3
|
||||
#usr/lib/python2.7/lib2to3/Grammar.txt
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar.txt
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/__init__.py
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyc
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyo
|
||||
@@ -2795,9 +2799,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/badsyntax_future8.py
|
||||
#usr/lib/python2.7/test/badsyntax_future9.py
|
||||
#usr/lib/python2.7/test/badsyntax_nocaret.py
|
||||
#usr/lib/python2.7/test/bisect.py
|
||||
#usr/lib/python2.7/test/bisect.pyc
|
||||
#usr/lib/python2.7/test/bisect.pyo
|
||||
#usr/lib/python2.7/test/bisect_cmd.py
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyc
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyo
|
||||
#usr/lib/python2.7/test/capath
|
||||
#usr/lib/python2.7/test/capath/0e4015b9.0
|
||||
#usr/lib/python2.7/test/capath/4e1295a3.0
|
||||
@@ -2805,6 +2809,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/capath/6e88d7b8.0
|
||||
#usr/lib/python2.7/test/capath/99d0fa06.0
|
||||
#usr/lib/python2.7/test/capath/ce7b8643.0
|
||||
#usr/lib/python2.7/test/capath/efa5f9c3.0
|
||||
#usr/lib/python2.7/test/cfgparser.1
|
||||
#usr/lib/python2.7/test/cjkencodings
|
||||
#usr/lib/python2.7/test/cjkencodings/big5-utf8.txt
|
||||
@@ -2987,7 +2992,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegral.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegralx.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/xor.decTest
|
||||
#usr/lib/python2.7/test/dh1024.pem
|
||||
#usr/lib/python2.7/test/doctest_aliases.py
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyc
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyo
|
||||
@@ -2996,6 +3000,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/double_const.pyo
|
||||
#usr/lib/python2.7/test/empty.vbs
|
||||
#usr/lib/python2.7/test/exception_hierarchy.txt
|
||||
#usr/lib/python2.7/test/ffdh3072.pem
|
||||
#usr/lib/python2.7/test/floating_points.txt
|
||||
#usr/lib/python2.7/test/fork_wait.py
|
||||
#usr/lib/python2.7/test/fork_wait.pyc
|
||||
@@ -3141,6 +3146,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.py
|
||||
#usr/lib/python2.7/test/symlink_support.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.pyo
|
||||
#usr/lib/python2.7/test/talos-2019-0758.pem
|
||||
#usr/lib/python2.7/test/test_MimeWriter.py
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyc
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyo
|
||||
@@ -3216,6 +3222,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.py
|
||||
#usr/lib/python2.7/test/test_bastion.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.pyo
|
||||
#usr/lib/python2.7/test/test_bdb.py
|
||||
#usr/lib/python2.7/test/test_bdb.pyc
|
||||
#usr/lib/python2.7/test/test_bdb.pyo
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.py
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyc
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyo
|
||||
@@ -4397,7 +4406,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.py
|
||||
#usr/lib/python2.7/test/win_console_handler.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.pyo
|
||||
#usr/lib/python2.7/test/wrongcert.pem
|
||||
#usr/lib/python2.7/test/xmltestdata
|
||||
#usr/lib/python2.7/test/xmltestdata/expat224_utf8_bug.xml
|
||||
#usr/lib/python2.7/test/xmltestdata/simple-ns.xml
|
||||
|
||||
@@ -1,6 +1,96 @@
|
||||
bin/sh
|
||||
bin/bash
|
||||
#bin/bashbug
|
||||
#usr/include/bash
|
||||
#usr/include/bash/alias.h
|
||||
#usr/include/bash/array.h
|
||||
#usr/include/bash/arrayfunc.h
|
||||
#usr/include/bash/assoc.h
|
||||
#usr/include/bash/bashansi.h
|
||||
#usr/include/bash/bashintl.h
|
||||
#usr/include/bash/bashjmp.h
|
||||
#usr/include/bash/bashtypes.h
|
||||
#usr/include/bash/builtins
|
||||
#usr/include/bash/builtins.h
|
||||
#usr/include/bash/builtins/bashgetopt.h
|
||||
#usr/include/bash/builtins/builtext.h
|
||||
#usr/include/bash/builtins/common.h
|
||||
#usr/include/bash/builtins/getopt.h
|
||||
#usr/include/bash/command.h
|
||||
#usr/include/bash/config-bot.h
|
||||
#usr/include/bash/config-top.h
|
||||
#usr/include/bash/config.h
|
||||
#usr/include/bash/conftypes.h
|
||||
#usr/include/bash/dispose_cmd.h
|
||||
#usr/include/bash/error.h
|
||||
#usr/include/bash/externs.h
|
||||
#usr/include/bash/general.h
|
||||
#usr/include/bash/hashlib.h
|
||||
#usr/include/bash/include
|
||||
#usr/include/bash/include/ansi_stdlib.h
|
||||
#usr/include/bash/include/chartypes.h
|
||||
#usr/include/bash/include/filecntl.h
|
||||
#usr/include/bash/include/gettext.h
|
||||
#usr/include/bash/include/maxpath.h
|
||||
#usr/include/bash/include/memalloc.h
|
||||
#usr/include/bash/include/ocache.h
|
||||
#usr/include/bash/include/posixdir.h
|
||||
#usr/include/bash/include/posixjmp.h
|
||||
#usr/include/bash/include/posixstat.h
|
||||
#usr/include/bash/include/posixtime.h
|
||||
#usr/include/bash/include/posixwait.h
|
||||
#usr/include/bash/include/shmbchar.h
|
||||
#usr/include/bash/include/shmbutil.h
|
||||
#usr/include/bash/include/shtty.h
|
||||
#usr/include/bash/include/stat-time.h
|
||||
#usr/include/bash/include/stdc.h
|
||||
#usr/include/bash/include/systimes.h
|
||||
#usr/include/bash/include/typemax.h
|
||||
#usr/include/bash/include/unionwait.h
|
||||
#usr/include/bash/jobs.h
|
||||
#usr/include/bash/make_cmd.h
|
||||
#usr/include/bash/pathnames.h
|
||||
#usr/include/bash/quit.h
|
||||
#usr/include/bash/shell.h
|
||||
#usr/include/bash/sig.h
|
||||
#usr/include/bash/siglist.h
|
||||
#usr/include/bash/signames.h
|
||||
#usr/include/bash/subst.h
|
||||
#usr/include/bash/syntax.h
|
||||
#usr/include/bash/unwind_prot.h
|
||||
#usr/include/bash/variables.h
|
||||
#usr/include/bash/version.h
|
||||
#usr/include/bash/xmalloc.h
|
||||
#usr/include/bash/y.tab.h
|
||||
#usr/lib/bash
|
||||
usr/lib/bash/Makefile.inc
|
||||
usr/lib/bash/basename
|
||||
usr/lib/bash/dirname
|
||||
usr/lib/bash/fdflags
|
||||
usr/lib/bash/finfo
|
||||
usr/lib/bash/head
|
||||
usr/lib/bash/id
|
||||
usr/lib/bash/ln
|
||||
usr/lib/bash/loadables.h
|
||||
usr/lib/bash/logname
|
||||
usr/lib/bash/mkdir
|
||||
usr/lib/bash/mypid
|
||||
usr/lib/bash/pathchk
|
||||
usr/lib/bash/print
|
||||
usr/lib/bash/printenv
|
||||
usr/lib/bash/push
|
||||
usr/lib/bash/realpath
|
||||
usr/lib/bash/rmdir
|
||||
usr/lib/bash/seq
|
||||
usr/lib/bash/setpgid
|
||||
usr/lib/bash/sleep
|
||||
usr/lib/bash/strftime
|
||||
usr/lib/bash/sync
|
||||
usr/lib/bash/tee
|
||||
usr/lib/bash/truefalse
|
||||
usr/lib/bash/tty
|
||||
usr/lib/bash/uname
|
||||
usr/lib/bash/unlink
|
||||
usr/lib/bash/whoami
|
||||
#usr/lib/pkgconfig/bash.pc
|
||||
#usr/share/doc/bash
|
||||
#usr/share/doc/bash/CHANGES
|
||||
#usr/share/doc/bash/COMPAT
|
||||
@@ -39,15 +129,15 @@ bin/bash
|
||||
#usr/share/locale/it/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ja/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/lt/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/nb/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/nl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/pt/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/pt_BR/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ro/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ru/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sk/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sr
|
||||
#usr/share/locale/sr/LC_MESSAGES
|
||||
#usr/share/locale/sr/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sv/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/tr/LC_MESSAGES/bash.mo
|
||||
@@ -57,3 +147,5 @@ bin/bash
|
||||
#usr/share/locale/zh_TW/LC_MESSAGES/bash.mo
|
||||
#usr/share/man/man1/bash.1
|
||||
#usr/share/man/man1/bashbug.1
|
||||
bin/sh
|
||||
bin/bash
|
||||
|
||||
@@ -268,15 +268,15 @@ usr/bin/nsupdate
|
||||
#usr/lib/libbind9.la
|
||||
#usr/lib/libbind9.so
|
||||
usr/lib/libbind9.so.161
|
||||
usr/lib/libbind9.so.161.0.3
|
||||
usr/lib/libbind9.so.161.0.4
|
||||
#usr/lib/libdns.la
|
||||
#usr/lib/libdns.so
|
||||
usr/lib/libdns.so.1107
|
||||
usr/lib/libdns.so.1107.0.2
|
||||
usr/lib/libdns.so.1107.1.0
|
||||
#usr/lib/libisc.la
|
||||
#usr/lib/libisc.so
|
||||
usr/lib/libisc.so.1100
|
||||
usr/lib/libisc.so.1100.3.2
|
||||
usr/lib/libisc.so.1104
|
||||
usr/lib/libisc.so.1104.0.0
|
||||
#usr/lib/libisccc.la
|
||||
#usr/lib/libisccc.so
|
||||
usr/lib/libisccc.so.161
|
||||
@@ -284,11 +284,11 @@ usr/lib/libisccc.so.161.0.1
|
||||
#usr/lib/libisccfg.la
|
||||
#usr/lib/libisccfg.so
|
||||
usr/lib/libisccfg.so.163
|
||||
usr/lib/libisccfg.so.163.0.3
|
||||
usr/lib/libisccfg.so.163.0.4
|
||||
#usr/lib/liblwres.la
|
||||
#usr/lib/liblwres.so
|
||||
usr/lib/liblwres.so.161
|
||||
usr/lib/liblwres.so.161.0.2
|
||||
usr/lib/liblwres.so.161.0.3
|
||||
#usr/share/man/man1/dig.1
|
||||
#usr/share/man/man1/host.1
|
||||
#usr/share/man/man1/nslookup.1
|
||||
|
||||
@@ -15,6 +15,7 @@ bin/cpio
|
||||
#usr/share/locale/ko/LC_MESSAGES/cpio.mo
|
||||
#usr/share/locale/nl/LC_MESSAGES/cpio.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/cpio.mo
|
||||
#usr/share/locale/pt/LC_MESSAGES/cpio.mo
|
||||
#usr/share/locale/pt_BR/LC_MESSAGES/cpio.mo
|
||||
#usr/share/locale/ro/LC_MESSAGES/cpio.mo
|
||||
#usr/share/locale/ru/LC_MESSAGES/cpio.mo
|
||||
|
||||
@@ -47,6 +47,7 @@ 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/05-update-dns-forwarders
|
||||
@@ -62,6 +63,7 @@ etc/rc.d/init.d/networking/red.up/30-ddns
|
||||
etc/rc.d/init.d/networking/red.up/50-ipsec
|
||||
etc/rc.d/init.d/networking/red.up/50-ovpn
|
||||
etc/rc.d/init.d/networking/red.up/98-leds
|
||||
etc/rc.d/init.d/networking/red.up/99-beep
|
||||
etc/rc.d/init.d/networking/red.up/99-fireinfo
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/init.d/networking/red.up/99-pakfire-update
|
||||
|
||||
@@ -800,6 +800,7 @@ usr/lib/python2.7/dis.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.py
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyo
|
||||
#usr/lib/python2.7/distutils/tests/includetest.rst
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.py
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyc
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyo
|
||||
@@ -1463,8 +1464,8 @@ usr/lib/python2.7/encodings/zlib_codec.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyo
|
||||
#usr/lib/python2.7/ensurepip/_bundled
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-9.0.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-39.0.1-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.py
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyc
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyo
|
||||
@@ -1926,7 +1927,7 @@ usr/lib/python2.7/json/tool.pyc
|
||||
usr/lib/python2.7/keyword.pyc
|
||||
#usr/lib/python2.7/keyword.pyo
|
||||
#usr/lib/python2.7/lib-dynload
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.15-py2.7.egg-info
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.17-py2.7.egg-info
|
||||
usr/lib/python2.7/lib-dynload/_bisect.so
|
||||
usr/lib/python2.7/lib-dynload/_bsddb.so
|
||||
usr/lib/python2.7/lib-dynload/_codecs_cn.so
|
||||
@@ -2045,6 +2046,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyo
|
||||
@@ -2102,9 +2106,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/turtle.pyo
|
||||
#usr/lib/python2.7/lib2to3
|
||||
#usr/lib/python2.7/lib2to3/Grammar.txt
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar.txt
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/__init__.py
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyc
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyo
|
||||
@@ -2795,9 +2799,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/badsyntax_future8.py
|
||||
#usr/lib/python2.7/test/badsyntax_future9.py
|
||||
#usr/lib/python2.7/test/badsyntax_nocaret.py
|
||||
#usr/lib/python2.7/test/bisect.py
|
||||
#usr/lib/python2.7/test/bisect.pyc
|
||||
#usr/lib/python2.7/test/bisect.pyo
|
||||
#usr/lib/python2.7/test/bisect_cmd.py
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyc
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyo
|
||||
#usr/lib/python2.7/test/capath
|
||||
#usr/lib/python2.7/test/capath/0e4015b9.0
|
||||
#usr/lib/python2.7/test/capath/4e1295a3.0
|
||||
@@ -2805,6 +2809,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/capath/6e88d7b8.0
|
||||
#usr/lib/python2.7/test/capath/99d0fa06.0
|
||||
#usr/lib/python2.7/test/capath/ce7b8643.0
|
||||
#usr/lib/python2.7/test/capath/efa5f9c3.0
|
||||
#usr/lib/python2.7/test/cfgparser.1
|
||||
#usr/lib/python2.7/test/cjkencodings
|
||||
#usr/lib/python2.7/test/cjkencodings/big5-utf8.txt
|
||||
@@ -2987,7 +2992,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegral.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegralx.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/xor.decTest
|
||||
#usr/lib/python2.7/test/dh1024.pem
|
||||
#usr/lib/python2.7/test/doctest_aliases.py
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyc
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyo
|
||||
@@ -2996,6 +3000,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/double_const.pyo
|
||||
#usr/lib/python2.7/test/empty.vbs
|
||||
#usr/lib/python2.7/test/exception_hierarchy.txt
|
||||
#usr/lib/python2.7/test/ffdh3072.pem
|
||||
#usr/lib/python2.7/test/floating_points.txt
|
||||
#usr/lib/python2.7/test/fork_wait.py
|
||||
#usr/lib/python2.7/test/fork_wait.pyc
|
||||
@@ -3141,6 +3146,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.py
|
||||
#usr/lib/python2.7/test/symlink_support.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.pyo
|
||||
#usr/lib/python2.7/test/talos-2019-0758.pem
|
||||
#usr/lib/python2.7/test/test_MimeWriter.py
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyc
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyo
|
||||
@@ -3216,6 +3222,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.py
|
||||
#usr/lib/python2.7/test/test_bastion.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.pyo
|
||||
#usr/lib/python2.7/test/test_bdb.py
|
||||
#usr/lib/python2.7/test/test_bdb.pyc
|
||||
#usr/lib/python2.7/test/test_bdb.pyo
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.py
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyc
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyo
|
||||
@@ -4397,7 +4406,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.py
|
||||
#usr/lib/python2.7/test/win_console_handler.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.pyo
|
||||
#usr/lib/python2.7/test/wrongcert.pem
|
||||
#usr/lib/python2.7/test/xmltestdata
|
||||
#usr/lib/python2.7/test/xmltestdata/expat224_utf8_bug.xml
|
||||
#usr/lib/python2.7/test/xmltestdata/simple-ns.xml
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#usr/lib/libarchive.la
|
||||
#usr/lib/libarchive.so
|
||||
#usr/lib/libarchive.so.13
|
||||
#usr/lib/libarchive.so.13.3.1
|
||||
#usr/lib/libarchive.so.13.4.0
|
||||
#usr/lib/pkgconfig/libarchive.pc
|
||||
#usr/share/man/man1/bsdcat.1
|
||||
#usr/share/man/man1/bsdcpio.1
|
||||
@@ -14,6 +14,7 @@
|
||||
#usr/share/man/man3/archive_entry.3
|
||||
#usr/share/man/man3/archive_entry_acl.3
|
||||
#usr/share/man/man3/archive_entry_linkify.3
|
||||
#usr/share/man/man3/archive_entry_misc.3
|
||||
#usr/share/man/man3/archive_entry_paths.3
|
||||
#usr/share/man/man3/archive_entry_perms.3
|
||||
#usr/share/man/man3/archive_entry_stat.3
|
||||
|
||||
@@ -13,7 +13,9 @@ lib/firmware/LICENCE.agere
|
||||
lib/firmware/LICENCE.atheros_firmware
|
||||
lib/firmware/LICENCE.broadcom_bcm43xx
|
||||
lib/firmware/LICENCE.ca0132
|
||||
lib/firmware/LICENCE.cadence
|
||||
lib/firmware/LICENCE.cavium
|
||||
lib/firmware/LICENCE.cavium_liquidio
|
||||
lib/firmware/LICENCE.chelsio_firmware
|
||||
lib/firmware/LICENCE.cw1200
|
||||
lib/firmware/LICENCE.cypress
|
||||
@@ -27,6 +29,7 @@ lib/firmware/LICENCE.it913x
|
||||
lib/firmware/LICENCE.iwlwifi_firmware
|
||||
lib/firmware/LICENCE.kaweth
|
||||
lib/firmware/LICENCE.mediatek
|
||||
lib/firmware/LICENCE.microchip
|
||||
lib/firmware/LICENCE.moxa
|
||||
lib/firmware/LICENCE.myri10ge_firmware
|
||||
lib/firmware/LICENCE.nvidia
|
||||
@@ -52,13 +55,17 @@ lib/firmware/LICENCE.xc5000
|
||||
lib/firmware/LICENCE.xc5000c
|
||||
lib/firmware/LICENSE.QualcommAtheros_ar3k
|
||||
lib/firmware/LICENSE.QualcommAtheros_ath10k
|
||||
lib/firmware/LICENSE.amd-sev
|
||||
lib/firmware/LICENSE.amd-ucode
|
||||
lib/firmware/LICENSE.amdgpu
|
||||
lib/firmware/LICENSE.amlogic_vdec
|
||||
lib/firmware/LICENSE.atmel
|
||||
lib/firmware/LICENSE.dib0700
|
||||
lib/firmware/LICENSE.hfi1_firmware
|
||||
lib/firmware/LICENSE.i915
|
||||
lib/firmware/LICENSE.ice
|
||||
lib/firmware/LICENSE.ipu3_firmware
|
||||
lib/firmware/LICENSE.nxp_mc_firmware
|
||||
lib/firmware/LICENSE.qcom
|
||||
lib/firmware/LICENSE.radeon
|
||||
lib/firmware/LICENSE.sdma_firmware
|
||||
@@ -71,8 +78,6 @@ lib/firmware/RTL8192E/main.img
|
||||
lib/firmware/TDA7706_OM_v2.5.1_boot.txt
|
||||
lib/firmware/TDA7706_OM_v3.0.2_boot.txt
|
||||
lib/firmware/WHENCE
|
||||
lib/firmware/a300_pfp.fw
|
||||
lib/firmware/a300_pm4.fw
|
||||
#lib/firmware/acenic
|
||||
lib/firmware/acenic/tg1.bin
|
||||
lib/firmware/acenic/tg2.bin
|
||||
@@ -86,6 +91,7 @@ lib/firmware/advansys/38C1600.bin
|
||||
lib/firmware/advansys/mcode.bin
|
||||
lib/firmware/agere_ap_fw.bin
|
||||
lib/firmware/agere_sta_fw.bin
|
||||
#lib/firmware/amd
|
||||
#lib/firmware/amd-ucode
|
||||
lib/firmware/amd-ucode/microcode_amd.bin
|
||||
lib/firmware/amd-ucode/microcode_amd.bin.asc
|
||||
@@ -95,6 +101,7 @@ lib/firmware/amd-ucode/microcode_amd_fam16h.bin
|
||||
lib/firmware/amd-ucode/microcode_amd_fam16h.bin.asc
|
||||
lib/firmware/amd-ucode/microcode_amd_fam17h.bin
|
||||
lib/firmware/amd-ucode/microcode_amd_fam17h.bin.asc
|
||||
lib/firmware/amd/amd_sev_fam17h_model0xh.sbin
|
||||
#lib/firmware/amdgpu
|
||||
lib/firmware/amdgpu/banks_k_2_smc.bin
|
||||
lib/firmware/amdgpu/bonaire_ce.bin
|
||||
@@ -178,6 +185,32 @@ lib/firmware/amdgpu/mullins_sdma.bin
|
||||
lib/firmware/amdgpu/mullins_sdma1.bin
|
||||
lib/firmware/amdgpu/mullins_uvd.bin
|
||||
lib/firmware/amdgpu/mullins_vce.bin
|
||||
lib/firmware/amdgpu/navi10_asd.bin
|
||||
lib/firmware/amdgpu/navi10_ce.bin
|
||||
lib/firmware/amdgpu/navi10_gpu_info.bin
|
||||
lib/firmware/amdgpu/navi10_me.bin
|
||||
lib/firmware/amdgpu/navi10_mec.bin
|
||||
lib/firmware/amdgpu/navi10_mec2.bin
|
||||
lib/firmware/amdgpu/navi10_pfp.bin
|
||||
lib/firmware/amdgpu/navi10_rlc.bin
|
||||
lib/firmware/amdgpu/navi10_sdma.bin
|
||||
lib/firmware/amdgpu/navi10_sdma1.bin
|
||||
lib/firmware/amdgpu/navi10_smc.bin
|
||||
lib/firmware/amdgpu/navi10_sos.bin
|
||||
lib/firmware/amdgpu/navi10_vcn.bin
|
||||
lib/firmware/amdgpu/navi14_asd.bin
|
||||
lib/firmware/amdgpu/navi14_ce.bin
|
||||
lib/firmware/amdgpu/navi14_gpu_info.bin
|
||||
lib/firmware/amdgpu/navi14_me.bin
|
||||
lib/firmware/amdgpu/navi14_mec.bin
|
||||
lib/firmware/amdgpu/navi14_mec2.bin
|
||||
lib/firmware/amdgpu/navi14_pfp.bin
|
||||
lib/firmware/amdgpu/navi14_rlc.bin
|
||||
lib/firmware/amdgpu/navi14_sdma.bin
|
||||
lib/firmware/amdgpu/navi14_sdma1.bin
|
||||
lib/firmware/amdgpu/navi14_smc.bin
|
||||
lib/firmware/amdgpu/navi14_sos.bin
|
||||
lib/firmware/amdgpu/navi14_vcn.bin
|
||||
lib/firmware/amdgpu/oland_ce.bin
|
||||
lib/firmware/amdgpu/oland_k_smc.bin
|
||||
lib/firmware/amdgpu/oland_mc.bin
|
||||
@@ -185,6 +218,17 @@ 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/picasso_asd.bin
|
||||
lib/firmware/amdgpu/picasso_ce.bin
|
||||
lib/firmware/amdgpu/picasso_gpu_info.bin
|
||||
lib/firmware/amdgpu/picasso_me.bin
|
||||
lib/firmware/amdgpu/picasso_mec.bin
|
||||
lib/firmware/amdgpu/picasso_mec2.bin
|
||||
lib/firmware/amdgpu/picasso_pfp.bin
|
||||
lib/firmware/amdgpu/picasso_rlc.bin
|
||||
lib/firmware/amdgpu/picasso_rlc_am4.bin
|
||||
lib/firmware/amdgpu/picasso_sdma.bin
|
||||
lib/firmware/amdgpu/picasso_vcn.bin
|
||||
lib/firmware/amdgpu/pitcairn_ce.bin
|
||||
lib/firmware/amdgpu/pitcairn_k_smc.bin
|
||||
lib/firmware/amdgpu/pitcairn_mc.bin
|
||||
@@ -194,6 +238,8 @@ lib/firmware/amdgpu/pitcairn_rlc.bin
|
||||
lib/firmware/amdgpu/pitcairn_smc.bin
|
||||
lib/firmware/amdgpu/polaris10_ce.bin
|
||||
lib/firmware/amdgpu/polaris10_ce_2.bin
|
||||
lib/firmware/amdgpu/polaris10_k2_smc.bin
|
||||
lib/firmware/amdgpu/polaris10_k_mc.bin
|
||||
lib/firmware/amdgpu/polaris10_k_smc.bin
|
||||
lib/firmware/amdgpu/polaris10_mc.bin
|
||||
lib/firmware/amdgpu/polaris10_me.bin
|
||||
@@ -213,6 +259,8 @@ lib/firmware/amdgpu/polaris10_uvd.bin
|
||||
lib/firmware/amdgpu/polaris10_vce.bin
|
||||
lib/firmware/amdgpu/polaris11_ce.bin
|
||||
lib/firmware/amdgpu/polaris11_ce_2.bin
|
||||
lib/firmware/amdgpu/polaris11_k2_smc.bin
|
||||
lib/firmware/amdgpu/polaris11_k_mc.bin
|
||||
lib/firmware/amdgpu/polaris11_k_smc.bin
|
||||
lib/firmware/amdgpu/polaris11_mc.bin
|
||||
lib/firmware/amdgpu/polaris11_me.bin
|
||||
@@ -232,6 +280,8 @@ lib/firmware/amdgpu/polaris11_uvd.bin
|
||||
lib/firmware/amdgpu/polaris11_vce.bin
|
||||
lib/firmware/amdgpu/polaris12_ce.bin
|
||||
lib/firmware/amdgpu/polaris12_ce_2.bin
|
||||
lib/firmware/amdgpu/polaris12_k_mc.bin
|
||||
lib/firmware/amdgpu/polaris12_k_smc.bin
|
||||
lib/firmware/amdgpu/polaris12_mc.bin
|
||||
lib/firmware/amdgpu/polaris12_me.bin
|
||||
lib/firmware/amdgpu/polaris12_me_2.bin
|
||||
@@ -247,9 +297,21 @@ lib/firmware/amdgpu/polaris12_sdma1.bin
|
||||
lib/firmware/amdgpu/polaris12_smc.bin
|
||||
lib/firmware/amdgpu/polaris12_uvd.bin
|
||||
lib/firmware/amdgpu/polaris12_vce.bin
|
||||
lib/firmware/amdgpu/raven2_asd.bin
|
||||
lib/firmware/amdgpu/raven2_ce.bin
|
||||
lib/firmware/amdgpu/raven2_gpu_info.bin
|
||||
lib/firmware/amdgpu/raven2_me.bin
|
||||
lib/firmware/amdgpu/raven2_mec.bin
|
||||
lib/firmware/amdgpu/raven2_mec2.bin
|
||||
lib/firmware/amdgpu/raven2_pfp.bin
|
||||
lib/firmware/amdgpu/raven2_rlc.bin
|
||||
lib/firmware/amdgpu/raven2_sdma.bin
|
||||
lib/firmware/amdgpu/raven2_vcn.bin
|
||||
lib/firmware/amdgpu/raven_asd.bin
|
||||
lib/firmware/amdgpu/raven_ce.bin
|
||||
lib/firmware/amdgpu/raven_dmcu.bin
|
||||
lib/firmware/amdgpu/raven_gpu_info.bin
|
||||
lib/firmware/amdgpu/raven_kicker_rlc.bin
|
||||
lib/firmware/amdgpu/raven_me.bin
|
||||
lib/firmware/amdgpu/raven_mec.bin
|
||||
lib/firmware/amdgpu/raven_mec2.bin
|
||||
@@ -312,6 +374,33 @@ lib/firmware/amdgpu/vega10_smc.bin
|
||||
lib/firmware/amdgpu/vega10_sos.bin
|
||||
lib/firmware/amdgpu/vega10_uvd.bin
|
||||
lib/firmware/amdgpu/vega10_vce.bin
|
||||
lib/firmware/amdgpu/vega12_asd.bin
|
||||
lib/firmware/amdgpu/vega12_ce.bin
|
||||
lib/firmware/amdgpu/vega12_gpu_info.bin
|
||||
lib/firmware/amdgpu/vega12_me.bin
|
||||
lib/firmware/amdgpu/vega12_mec.bin
|
||||
lib/firmware/amdgpu/vega12_mec2.bin
|
||||
lib/firmware/amdgpu/vega12_pfp.bin
|
||||
lib/firmware/amdgpu/vega12_rlc.bin
|
||||
lib/firmware/amdgpu/vega12_sdma.bin
|
||||
lib/firmware/amdgpu/vega12_sdma1.bin
|
||||
lib/firmware/amdgpu/vega12_smc.bin
|
||||
lib/firmware/amdgpu/vega12_sos.bin
|
||||
lib/firmware/amdgpu/vega12_uvd.bin
|
||||
lib/firmware/amdgpu/vega12_vce.bin
|
||||
lib/firmware/amdgpu/vega20_asd.bin
|
||||
lib/firmware/amdgpu/vega20_ce.bin
|
||||
lib/firmware/amdgpu/vega20_me.bin
|
||||
lib/firmware/amdgpu/vega20_mec.bin
|
||||
lib/firmware/amdgpu/vega20_mec2.bin
|
||||
lib/firmware/amdgpu/vega20_pfp.bin
|
||||
lib/firmware/amdgpu/vega20_rlc.bin
|
||||
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_uvd.bin
|
||||
lib/firmware/amdgpu/vega20_vce.bin
|
||||
lib/firmware/amdgpu/vegam_ce.bin
|
||||
lib/firmware/amdgpu/vegam_me.bin
|
||||
lib/firmware/amdgpu/vegam_mec.bin
|
||||
@@ -404,7 +493,9 @@ lib/firmware/ath10k/QCA6174/hw3.0/notice_ath10k_firmware-6.txt
|
||||
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/notice_ath10k_firmware-5.txt
|
||||
lib/firmware/ath10k/QCA9377/hw1.0/notice_ath10k_firmware-6.txt
|
||||
#lib/firmware/ath10k/QCA9887
|
||||
#lib/firmware/ath10k/QCA9887/hw1.0
|
||||
lib/firmware/ath10k/QCA9887/hw1.0/board.bin
|
||||
@@ -539,6 +630,7 @@ lib/firmware/bnx2x/bnx2x-e1-7.0.29.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.10.51.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.12.30.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.13.1.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.13.11.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.2.16.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.2.51.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.8.17.0.fw
|
||||
@@ -553,6 +645,7 @@ lib/firmware/bnx2x/bnx2x-e1h-7.0.29.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.10.51.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.12.30.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.13.1.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.13.11.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.2.16.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.2.51.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.8.17.0.fw
|
||||
@@ -567,6 +660,7 @@ lib/firmware/bnx2x/bnx2x-e2-7.0.29.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.10.51.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.12.30.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.13.1.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.13.11.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.2.16.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.2.51.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.8.17.0.fw
|
||||
@@ -584,21 +678,33 @@ lib/firmware/brcm/brcmfmac43241b4-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43241b5-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43242a.bin
|
||||
lib/firmware/brcm/brcmfmac4329-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac4330-sdio.Prowise-PT301.txt
|
||||
lib/firmware/brcm/brcmfmac4330-sdio.bin
|
||||
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/brcmfmac4335-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43362-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43362-sdio.cubietech,cubietruck.txt
|
||||
lib/firmware/brcm/brcmfmac43362-sdio.lemaker,bananapro.txt
|
||||
lib/firmware/brcm/brcmfmac4339-sdio.bin
|
||||
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.raspberrypi,3-model-b.txt
|
||||
lib/firmware/brcm/brcmfmac43430a0-sdio.ONDA-V80_PLUS.txt
|
||||
lib/firmware/brcm/brcmfmac43430a0-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.MINIX-NEO_Z83-4.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt
|
||||
lib/firmware/brcm/brcmfmac4350-pcie.bin
|
||||
lib/firmware/brcm/brcmfmac4350c2-pcie.bin
|
||||
lib/firmware/brcm/brcmfmac4354-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac4356-pcie.bin
|
||||
lib/firmware/brcm/brcmfmac4356-pcie.gpd-win-pocket.txt
|
||||
lib/firmware/brcm/brcmfmac4356-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43569.bin
|
||||
lib/firmware/brcm/brcmfmac43570-pcie.bin
|
||||
@@ -606,9 +712,12 @@ lib/firmware/brcm/brcmfmac4358-pcie.bin
|
||||
lib/firmware/brcm/brcmfmac43602-pcie.ap.bin
|
||||
lib/firmware/brcm/brcmfmac43602-pcie.bin
|
||||
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.bin
|
||||
#lib/firmware/cadence
|
||||
lib/firmware/cadence/mhdp8546.bin
|
||||
lib/firmware/carl9170-1.fw
|
||||
#lib/firmware/carl9170fw
|
||||
#lib/firmware/carl9170fw/CMakeLists.txt
|
||||
@@ -741,6 +850,7 @@ lib/firmware/carl9170-1.fw
|
||||
#lib/firmware/carl9170fw/tools/src/miniboot.c
|
||||
#lib/firmware/carl9170fw/tools/src/wol.c
|
||||
#lib/firmware/cavium
|
||||
lib/firmware/cavium/cnn55xx_ae.fw
|
||||
lib/firmware/cavium/cnn55xx_se.fw
|
||||
lib/firmware/cbfw-3.2.1.1.bin
|
||||
lib/firmware/cbfw-3.2.3.0.bin
|
||||
@@ -781,6 +891,7 @@ lib/firmware/cis/tamarack.cis
|
||||
lib/firmware/cmmb_vega_12mhz.inp
|
||||
lib/firmware/cmmb_venice_12mhz.inp
|
||||
#lib/firmware/configure
|
||||
#lib/firmware/copy-firmware.sh
|
||||
#lib/firmware/cpia2
|
||||
lib/firmware/cpia2/stv0672_vp4.bin
|
||||
lib/firmware/ct2fw-3.2.1.1.bin
|
||||
@@ -805,19 +916,33 @@ lib/firmware/cxgb3/t3fw-7.4.0.bin
|
||||
#lib/firmware/cxgb4
|
||||
lib/firmware/cxgb4/aq1202_fw.cld
|
||||
lib/firmware/cxgb4/bcm8483.bin
|
||||
#lib/firmware/cxgb4/configs
|
||||
lib/firmware/cxgb4/configs/t4-config-default.txt
|
||||
lib/firmware/cxgb4/configs/t5-config-default.txt
|
||||
lib/firmware/cxgb4/configs/t5-config-hashfilter.txt
|
||||
lib/firmware/cxgb4/configs/t6-config-default.txt
|
||||
lib/firmware/cxgb4/configs/t6-config-hashfilter.txt
|
||||
lib/firmware/cxgb4/t4fw-1.14.4.0.bin
|
||||
lib/firmware/cxgb4/t4fw-1.15.37.0.bin
|
||||
lib/firmware/cxgb4/t4fw-1.20.8.0.bin
|
||||
lib/firmware/cxgb4/t4fw.bin
|
||||
lib/firmware/cxgb4/t4fw-1.24.3.0.bin
|
||||
lib/firmware/cxgb4/t5fw-1.14.4.0.bin
|
||||
lib/firmware/cxgb4/t5fw-1.15.37.0.bin
|
||||
lib/firmware/cxgb4/t5fw-1.20.8.0.bin
|
||||
lib/firmware/cxgb4/t5fw.bin
|
||||
lib/firmware/cxgb4/t6fw-1.20.8.0.bin
|
||||
lib/firmware/cxgb4/t6fw.bin
|
||||
lib/firmware/cxgb4/t5fw-1.24.3.0.bin
|
||||
lib/firmware/cxgb4/t6fw-1.24.3.0.bin
|
||||
#lib/firmware/dabusb
|
||||
lib/firmware/dabusb/bitstream.bin
|
||||
lib/firmware/dabusb/firmware.fw
|
||||
#lib/firmware/dpaa2
|
||||
#lib/firmware/dpaa2/mc
|
||||
lib/firmware/dpaa2/mc/mc_10.10.0_ls1088a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.10.0_ls2088a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.10.0_lx2160a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.14.3_ls1088a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.14.3_ls2088a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.14.3_lx2160a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.16.2_ls1088a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.16.2_ls2088a.itb
|
||||
lib/firmware/dpaa2/mc/mc_10.16.2_lx2160a.itb
|
||||
#lib/firmware/dsp56k
|
||||
#lib/firmware/dsp56k/Makefile
|
||||
#lib/firmware/dsp56k/bootstrap.asm
|
||||
@@ -883,45 +1008,65 @@ lib/firmware/i6050-fw-usb-1.5.sbcf
|
||||
#lib/firmware/i915
|
||||
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_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_huc_4.0.0.bin
|
||||
lib/firmware/i915/cnl_dmc_ver1_06.bin
|
||||
lib/firmware/i915/cnl_dmc_ver1_07.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_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_huc_9.0.0.bin
|
||||
lib/firmware/i915/icl_huc_ver8_4_3238.bin
|
||||
lib/firmware/i915/kbl_dmc_ver1.bin
|
||||
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_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/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_ver1.bin
|
||||
lib/firmware/i915/skl_guc_ver4.bin
|
||||
lib/firmware/i915/skl_guc_ver6.bin
|
||||
lib/firmware/i915/skl_guc_ver6_1.bin
|
||||
lib/firmware/i915/skl_guc_ver9_33.bin
|
||||
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/imx
|
||||
#lib/firmware/imx/sdma
|
||||
lib/firmware/imx/sdma/sdma-imx6q.bin
|
||||
lib/firmware/imx/sdma/sdma-imx7d.bin
|
||||
#lib/firmware/intel
|
||||
lib/firmware/intel/IntcSST2.bin
|
||||
lib/firmware/intel/dsp_fw_bxtn.bin
|
||||
lib/firmware/intel/dsp_fw_bxtn_v2219.bin
|
||||
lib/firmware/intel/dsp_fw_bxtn_v3366.bin
|
||||
lib/firmware/intel/dsp_fw_cnl.bin
|
||||
lib/firmware/intel/dsp_fw_cnl_v1191.bin
|
||||
lib/firmware/intel/dsp_fw_glk.bin
|
||||
lib/firmware/intel/dsp_fw_cnl_v1858.bin
|
||||
lib/firmware/intel/dsp_fw_glk_v1814.bin
|
||||
lib/firmware/intel/dsp_fw_glk_v2768.bin
|
||||
lib/firmware/intel/dsp_fw_glk_v2880.bin
|
||||
lib/firmware/intel/dsp_fw_glk_v3366.bin
|
||||
lib/firmware/intel/dsp_fw_kbl.bin
|
||||
lib/firmware/intel/dsp_fw_kbl_v1037.bin
|
||||
lib/firmware/intel/dsp_fw_kbl_v2042.bin
|
||||
lib/firmware/intel/dsp_fw_kbl_v2630.bin
|
||||
@@ -929,7 +1074,6 @@ lib/firmware/intel/dsp_fw_kbl_v3266.bin
|
||||
lib/firmware/intel/dsp_fw_kbl_v3402.bin
|
||||
lib/firmware/intel/dsp_fw_kbl_v3420.bin
|
||||
lib/firmware/intel/dsp_fw_kbl_v701.bin
|
||||
lib/firmware/intel/dsp_fw_release.bin
|
||||
lib/firmware/intel/dsp_fw_release_v3402.bin
|
||||
lib/firmware/intel/dsp_fw_release_v969.bin
|
||||
lib/firmware/intel/fw_sst_0f28.bin
|
||||
@@ -956,6 +1100,26 @@ lib/firmware/intel/ibt-18-16-1.ddc
|
||||
lib/firmware/intel/ibt-18-16-1.sfi
|
||||
lib/firmware/intel/ibt-18-2.ddc
|
||||
lib/firmware/intel/ibt-18-2.sfi
|
||||
lib/firmware/intel/ibt-19-0-0.ddc
|
||||
lib/firmware/intel/ibt-19-0-0.sfi
|
||||
lib/firmware/intel/ibt-19-0-1.ddc
|
||||
lib/firmware/intel/ibt-19-0-1.sfi
|
||||
lib/firmware/intel/ibt-19-0-4.ddc
|
||||
lib/firmware/intel/ibt-19-0-4.sfi
|
||||
lib/firmware/intel/ibt-19-16-4.ddc
|
||||
lib/firmware/intel/ibt-19-16-4.sfi
|
||||
lib/firmware/intel/ibt-19-32-0.ddc
|
||||
lib/firmware/intel/ibt-19-32-0.sfi
|
||||
lib/firmware/intel/ibt-19-32-1.ddc
|
||||
lib/firmware/intel/ibt-19-32-1.sfi
|
||||
lib/firmware/intel/ibt-19-32-4.ddc
|
||||
lib/firmware/intel/ibt-19-32-4.sfi
|
||||
lib/firmware/intel/ibt-20-0-3.ddc
|
||||
lib/firmware/intel/ibt-20-0-3.sfi
|
||||
lib/firmware/intel/ibt-20-1-3.ddc
|
||||
lib/firmware/intel/ibt-20-1-3.sfi
|
||||
lib/firmware/intel/ibt-20-1-4.ddc
|
||||
lib/firmware/intel/ibt-20-1-4.sfi
|
||||
lib/firmware/intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
|
||||
lib/firmware/intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq
|
||||
lib/firmware/intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq
|
||||
@@ -965,7 +1129,9 @@ lib/firmware/intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq
|
||||
lib/firmware/intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
|
||||
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/ipu3-fw.bin
|
||||
#lib/firmware/intel/ice
|
||||
#lib/firmware/intel/ice/ddp
|
||||
lib/firmware/intel/ice/ddp/ice-1.3.4.0.pkg
|
||||
lib/firmware/intel/irci_irci_ecr-master_20161208_0213_20170112_1500.bin
|
||||
lib/firmware/intelliport2.bin
|
||||
#lib/firmware/isci
|
||||
@@ -1051,9 +1217,23 @@ lib/firmware/iwlwifi-8265-36.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-33.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-34.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-38.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-41.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-43.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-46.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-33.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-34.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-38.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-41.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-43.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-46.ucode
|
||||
lib/firmware/iwlwifi-Qu-b0-hr-b0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-b0-jf-b0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-c0-hr-b0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-c0-jf-b0-48.ucode
|
||||
lib/firmware/iwlwifi-QuZ-a0-hr-b0-48.ucode
|
||||
lib/firmware/iwlwifi-QuZ-a0-jf-b0-48.ucode
|
||||
lib/firmware/iwlwifi-cc-a0-46.ucode
|
||||
lib/firmware/iwlwifi-cc-a0-48.ucode
|
||||
#lib/firmware/kaweth
|
||||
lib/firmware/kaweth/new_code.bin
|
||||
lib/firmware/kaweth/new_code_fix.bin
|
||||
@@ -1102,8 +1282,6 @@ lib/firmware/libertas/sd8686_v8.bin
|
||||
lib/firmware/libertas/sd8686_v8_helper.bin
|
||||
lib/firmware/libertas/sd8686_v9.bin
|
||||
lib/firmware/libertas/sd8686_v9_helper.bin
|
||||
lib/firmware/libertas/sd8688.bin
|
||||
lib/firmware/libertas/sd8688_helper.bin
|
||||
lib/firmware/libertas/usb8388_olpc.bin
|
||||
lib/firmware/libertas/usb8388_v5.bin
|
||||
lib/firmware/libertas/usb8388_v9.bin
|
||||
@@ -1118,14 +1296,41 @@ lib/firmware/liquidio/lio_410nv_nic.bin
|
||||
lib/firmware/matrox/g200_warp.fw
|
||||
lib/firmware/matrox/g400_warp.fw
|
||||
#lib/firmware/mediatek
|
||||
lib/firmware/mediatek/mt7610e.bin
|
||||
lib/firmware/mediatek/mt7610u.bin
|
||||
lib/firmware/mediatek/mt7615_cr4.bin
|
||||
lib/firmware/mediatek/mt7615_n9.bin
|
||||
lib/firmware/mediatek/mt7615_rom_patch.bin
|
||||
lib/firmware/mediatek/mt7622pr2h.bin
|
||||
lib/firmware/mediatek/mt7650e.bin
|
||||
lib/firmware/mediatek/mt7662u.bin
|
||||
lib/firmware/mediatek/mt7662u_rom_patch.bin
|
||||
lib/firmware/mediatek/mt7668pr2h.bin
|
||||
#lib/firmware/mellanox
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1420.122.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1530.152.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1620.192.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1702.6.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1703.4.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1910.622.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.2000.1122.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.2000.1886.mfa2
|
||||
#lib/firmware/meson
|
||||
#lib/firmware/meson/vdec
|
||||
lib/firmware/meson/vdec/g12a_h264.bin
|
||||
lib/firmware/meson/vdec/g12a_vp9.bin
|
||||
lib/firmware/meson/vdec/gxbb_h264.bin
|
||||
lib/firmware/meson/vdec/gxl_h263.bin
|
||||
lib/firmware/meson/vdec/gxl_h264.bin
|
||||
lib/firmware/meson/vdec/gxl_hevc.bin
|
||||
lib/firmware/meson/vdec/gxl_hevc_mmu.bin
|
||||
lib/firmware/meson/vdec/gxl_mjpeg.bin
|
||||
lib/firmware/meson/vdec/gxl_mpeg12.bin
|
||||
lib/firmware/meson/vdec/gxl_mpeg4_5.bin
|
||||
lib/firmware/meson/vdec/gxm_h264.bin
|
||||
#lib/firmware/microchip
|
||||
lib/firmware/microchip/mscc_vsc8574_revb_int8051_29e8.bin
|
||||
lib/firmware/microchip/mscc_vsc8584_revb_int8051_fb48.bin
|
||||
#lib/firmware/moxa
|
||||
lib/firmware/moxa/moxa-1110.fw
|
||||
lib/firmware/moxa/moxa-1130.fw
|
||||
@@ -1153,6 +1358,8 @@ lib/firmware/mrvl/sd8797_uapsta.bin
|
||||
lib/firmware/mrvl/sd8801_uapsta.bin
|
||||
lib/firmware/mrvl/sd8887_uapsta.bin
|
||||
lib/firmware/mrvl/sd8897_uapsta.bin
|
||||
lib/firmware/mrvl/sdsd8977_combo_v2.bin
|
||||
lib/firmware/mrvl/sdsd8997_combo_v4.bin
|
||||
lib/firmware/mrvl/usb8766_uapsta.bin
|
||||
lib/firmware/mrvl/usb8797_uapsta.bin
|
||||
lib/firmware/mrvl/usb8801_uapsta.bin
|
||||
@@ -1190,21 +1397,38 @@ lib/firmware/myri10ge_rss_ethp_z8e.dat
|
||||
#lib/firmware/myricom
|
||||
lib/firmware/myricom/lanai.bin
|
||||
#lib/firmware/netronome
|
||||
#lib/firmware/netronome/bpf
|
||||
lib/firmware/netronome/bpf/nic_AMDA0058-0011_2x40.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0058-0012_2x40.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0078-0011_1x100.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0081-0001_1x40.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0081-0001_4x10.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0096-0001_2x10.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0097-0001_2x40.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0097-0001_4x10_1x40.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0097-0001_8x10.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0099-0001_1x10_1x25.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0099-0001_2x10.nffw
|
||||
lib/firmware/netronome/bpf/nic_AMDA0099-0001_2x25.nffw
|
||||
#lib/firmware/netronome/flower
|
||||
lib/firmware/netronome/flower/nic_AMDA0081-0001_1x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0081-0001_4x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0081.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0096-0001_2x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0096.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0097-0001_2x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0097-0001_4x10_1x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0097-0001_8x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0097.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0099-0001_1x10_1x25.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0099-0001_2x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0099-0001_2x25.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0099.nffw
|
||||
#lib/firmware/netronome/nic
|
||||
#lib/firmware/netronome/nic-sriov
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0058-0011_2x40.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0058-0012_2x40.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0078-0011_1x100.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0081-0001_1x40.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0081-0001_4x10.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0096-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0097-0001_2x40.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0097-0001_4x10_1x40.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0097-0001_8x10.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0099-0001_1x10_1x25.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0099-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic-sriov/nic_AMDA0099-0001_2x25.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0058-0011_2x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0058-0012_2x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0078-0011_1x100.nffw
|
||||
@@ -1217,18 +1441,6 @@ lib/firmware/netronome/nic/nic_AMDA0097-0001_8x10.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0099-0001_1x10_1x25.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0099-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0099-0001_2x25.nffw
|
||||
lib/firmware/netronome/nic_AMDA0058-0011_2x40.nffw
|
||||
lib/firmware/netronome/nic_AMDA0058-0012_2x40.nffw
|
||||
lib/firmware/netronome/nic_AMDA0078-0011_1x100.nffw
|
||||
lib/firmware/netronome/nic_AMDA0081-0001_1x40.nffw
|
||||
lib/firmware/netronome/nic_AMDA0081-0001_4x10.nffw
|
||||
lib/firmware/netronome/nic_AMDA0096-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic_AMDA0097-0001_2x40.nffw
|
||||
lib/firmware/netronome/nic_AMDA0097-0001_4x10_1x40.nffw
|
||||
lib/firmware/netronome/nic_AMDA0097-0001_8x10.nffw
|
||||
lib/firmware/netronome/nic_AMDA0099-0001_1x10_1x25.nffw
|
||||
lib/firmware/netronome/nic_AMDA0099-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic_AMDA0099-0001_2x25.nffw
|
||||
#lib/firmware/nvidia
|
||||
#lib/firmware/nvidia/gk20a
|
||||
lib/firmware/nvidia/gk20a/fecs_data.bin
|
||||
@@ -1352,8 +1564,11 @@ lib/firmware/nvidia/gp102/gr/sw_nonctx.bin
|
||||
#lib/firmware/nvidia/gp102/nvdec
|
||||
lib/firmware/nvidia/gp102/nvdec/scrubber.bin
|
||||
#lib/firmware/nvidia/gp102/sec2
|
||||
lib/firmware/nvidia/gp102/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp102/sec2/desc.bin
|
||||
lib/firmware/nvidia/gp102/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp102/sec2/image.bin
|
||||
lib/firmware/nvidia/gp102/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp102/sec2/sig.bin
|
||||
#lib/firmware/nvidia/gp104
|
||||
#lib/firmware/nvidia/gp104/acr
|
||||
@@ -1377,8 +1592,11 @@ lib/firmware/nvidia/gp104/gr/sw_nonctx.bin
|
||||
#lib/firmware/nvidia/gp104/nvdec
|
||||
lib/firmware/nvidia/gp104/nvdec/scrubber.bin
|
||||
#lib/firmware/nvidia/gp104/sec2
|
||||
lib/firmware/nvidia/gp104/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp104/sec2/desc.bin
|
||||
lib/firmware/nvidia/gp104/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp104/sec2/image.bin
|
||||
lib/firmware/nvidia/gp104/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp104/sec2/sig.bin
|
||||
#lib/firmware/nvidia/gp106
|
||||
#lib/firmware/nvidia/gp106/acr
|
||||
@@ -1402,8 +1620,11 @@ lib/firmware/nvidia/gp106/gr/sw_nonctx.bin
|
||||
#lib/firmware/nvidia/gp106/nvdec
|
||||
lib/firmware/nvidia/gp106/nvdec/scrubber.bin
|
||||
#lib/firmware/nvidia/gp106/sec2
|
||||
lib/firmware/nvidia/gp106/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp106/sec2/desc.bin
|
||||
lib/firmware/nvidia/gp106/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp106/sec2/image.bin
|
||||
lib/firmware/nvidia/gp106/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp106/sec2/sig.bin
|
||||
#lib/firmware/nvidia/gp107
|
||||
#lib/firmware/nvidia/gp107/acr
|
||||
@@ -1427,8 +1648,11 @@ lib/firmware/nvidia/gp107/gr/sw_nonctx.bin
|
||||
#lib/firmware/nvidia/gp107/nvdec
|
||||
lib/firmware/nvidia/gp107/nvdec/scrubber.bin
|
||||
#lib/firmware/nvidia/gp107/sec2
|
||||
lib/firmware/nvidia/gp107/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp107/sec2/desc.bin
|
||||
lib/firmware/nvidia/gp107/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp107/sec2/image.bin
|
||||
lib/firmware/nvidia/gp107/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp107/sec2/sig.bin
|
||||
#lib/firmware/nvidia/gp108
|
||||
#lib/firmware/nvidia/gp108/acr
|
||||
@@ -1476,14 +1700,47 @@ lib/firmware/nvidia/gp10b/gr/sw_nonctx.bin
|
||||
lib/firmware/nvidia/gp10b/pmu/desc.bin
|
||||
lib/firmware/nvidia/gp10b/pmu/image.bin
|
||||
lib/firmware/nvidia/gp10b/pmu/sig.bin
|
||||
#lib/firmware/nvidia/gv100
|
||||
#lib/firmware/nvidia/gv100/acr
|
||||
lib/firmware/nvidia/gv100/acr/bl.bin
|
||||
lib/firmware/nvidia/gv100/acr/ucode_load.bin
|
||||
lib/firmware/nvidia/gv100/acr/ucode_unload.bin
|
||||
lib/firmware/nvidia/gv100/acr/unload_bl.bin
|
||||
#lib/firmware/nvidia/gv100/gr
|
||||
lib/firmware/nvidia/gv100/gr/fecs_bl.bin
|
||||
lib/firmware/nvidia/gv100/gr/fecs_data.bin
|
||||
lib/firmware/nvidia/gv100/gr/fecs_inst.bin
|
||||
lib/firmware/nvidia/gv100/gr/fecs_sig.bin
|
||||
lib/firmware/nvidia/gv100/gr/gpccs_bl.bin
|
||||
lib/firmware/nvidia/gv100/gr/gpccs_data.bin
|
||||
lib/firmware/nvidia/gv100/gr/gpccs_inst.bin
|
||||
lib/firmware/nvidia/gv100/gr/gpccs_sig.bin
|
||||
lib/firmware/nvidia/gv100/gr/sw_bundle_init.bin
|
||||
lib/firmware/nvidia/gv100/gr/sw_ctx.bin
|
||||
lib/firmware/nvidia/gv100/gr/sw_method_init.bin
|
||||
lib/firmware/nvidia/gv100/gr/sw_nonctx.bin
|
||||
#lib/firmware/nvidia/gv100/nvdec
|
||||
lib/firmware/nvidia/gv100/nvdec/scrubber.bin
|
||||
#lib/firmware/nvidia/gv100/sec2
|
||||
lib/firmware/nvidia/gv100/sec2/desc.bin
|
||||
lib/firmware/nvidia/gv100/sec2/image.bin
|
||||
lib/firmware/nvidia/gv100/sec2/sig.bin
|
||||
#lib/firmware/nvidia/tegra124
|
||||
lib/firmware/nvidia/tegra124/vic03_ucode.bin
|
||||
lib/firmware/nvidia/tegra124/xusb.bin
|
||||
#lib/firmware/nvidia/tegra186
|
||||
lib/firmware/nvidia/tegra186/vic04_ucode.bin
|
||||
lib/firmware/nvidia/tegra186/xusb.bin
|
||||
#lib/firmware/nvidia/tegra194
|
||||
lib/firmware/nvidia/tegra194/xusb.bin
|
||||
#lib/firmware/nvidia/tegra210
|
||||
lib/firmware/nvidia/tegra210/vic04_ucode.bin
|
||||
lib/firmware/nvidia/tegra210/xusb.bin
|
||||
#lib/firmware/nvidia/tu10x
|
||||
#lib/firmware/nvidia/tu10x/typec
|
||||
lib/firmware/nvidia/tu10x/typec/ccg_boot.cyacd
|
||||
lib/firmware/nvidia/tu10x/typec/ccg_primary.cyacd
|
||||
lib/firmware/nvidia/tu10x/typec/ccg_secondary.cyacd
|
||||
#lib/firmware/ositech
|
||||
lib/firmware/ositech/Xilinx7OD.bin
|
||||
lib/firmware/phanfw.bin
|
||||
@@ -1493,17 +1750,20 @@ lib/firmware/qat_c3xxx.bin
|
||||
lib/firmware/qat_c3xxx_mmp.bin
|
||||
lib/firmware/qat_c62x.bin
|
||||
lib/firmware/qat_c62x_mmp.bin
|
||||
lib/firmware/qat_mmp.bin
|
||||
#lib/firmware/qca
|
||||
lib/firmware/qca/NOTICE.txt
|
||||
lib/firmware/qca/crbtfw21.tlv
|
||||
lib/firmware/qca/crnv21.bin
|
||||
lib/firmware/qca/nvm_00130300.bin
|
||||
lib/firmware/qca/nvm_00130302.bin
|
||||
lib/firmware/qca/nvm_00440302.bin
|
||||
lib/firmware/qca/nvm_usb_00000200.bin
|
||||
lib/firmware/qca/nvm_usb_00000201.bin
|
||||
lib/firmware/qca/nvm_usb_00000300.bin
|
||||
lib/firmware/qca/nvm_usb_00000302.bin
|
||||
lib/firmware/qca/rampatch_00130300.bin
|
||||
lib/firmware/qca/rampatch_00130302.bin
|
||||
lib/firmware/qca/rampatch_00440302.bin
|
||||
lib/firmware/qca/rampatch_usb_00000200.bin
|
||||
lib/firmware/qca/rampatch_usb_00000201.bin
|
||||
lib/firmware/qca/rampatch_usb_00000300.bin
|
||||
@@ -1519,6 +1779,8 @@ lib/firmware/qcom/a530_zap.b01
|
||||
lib/firmware/qcom/a530_zap.b02
|
||||
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/venus-1.8
|
||||
lib/firmware/qcom/venus-1.8/venus.b00
|
||||
lib/firmware/qcom/venus-1.8/venus.b01
|
||||
@@ -1548,6 +1810,7 @@ lib/firmware/qed/qed_init_values-8.18.9.0.bin
|
||||
lib/firmware/qed/qed_init_values-8.20.0.0.bin
|
||||
lib/firmware/qed/qed_init_values-8.30.12.0.bin
|
||||
lib/firmware/qed/qed_init_values-8.33.12.0.bin
|
||||
lib/firmware/qed/qed_init_values-8.37.7.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.10.10.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.10.5.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.15.3.0.bin
|
||||
@@ -1555,6 +1818,7 @@ lib/firmware/qed/qed_init_values_zipped-8.20.0.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.33.1.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.33.11.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.37.2.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.37.7.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.4.2.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.7.3.0.bin
|
||||
lib/firmware/ql2100_fw.bin
|
||||
@@ -1829,15 +2093,15 @@ lib/firmware/rp2.fw
|
||||
lib/firmware/rsi/rs9113_ap_bt_dual_mode.rps
|
||||
lib/firmware/rsi/rs9113_wlan_bt_dual_mode.rps
|
||||
lib/firmware/rsi/rs9113_wlan_qspi.rps
|
||||
lib/firmware/rsi/rs9116_wlan.rps
|
||||
lib/firmware/rsi/rs9116_wlan_bt_classic.rps
|
||||
lib/firmware/rsi_91x.fw
|
||||
lib/firmware/rt2561.bin
|
||||
lib/firmware/rt2561s.bin
|
||||
lib/firmware/rt2661.bin
|
||||
lib/firmware/rt2860.bin
|
||||
lib/firmware/rt2870.bin
|
||||
lib/firmware/rt3070.bin
|
||||
lib/firmware/rt3071.bin
|
||||
lib/firmware/rt3090.bin
|
||||
lib/firmware/rt3290.bin
|
||||
lib/firmware/rt73.bin
|
||||
#lib/firmware/rtl_bt
|
||||
@@ -1845,6 +2109,8 @@ 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-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
|
||||
@@ -1854,12 +2120,14 @@ lib/firmware/rtl_bt/rtl8821c_config.bin
|
||||
lib/firmware/rtl_bt/rtl8821c_fw.bin
|
||||
lib/firmware/rtl_bt/rtl8822b_config.bin
|
||||
lib/firmware/rtl_bt/rtl8822b_fw.bin
|
||||
lib/firmware/rtl_bt/rtl8822cu_fw.bin
|
||||
#lib/firmware/rtl_nic
|
||||
lib/firmware/rtl_nic/rtl8105e-1.fw
|
||||
lib/firmware/rtl_nic/rtl8106e-1.fw
|
||||
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/rtl8168d-1.fw
|
||||
lib/firmware/rtl_nic/rtl8168d-2.fw
|
||||
lib/firmware/rtl_nic/rtl8168e-1.fw
|
||||
@@ -1907,12 +2175,17 @@ lib/firmware/rtlwifi/rtl8723bu_wowlan.bin
|
||||
lib/firmware/rtlwifi/rtl8723defw.bin
|
||||
lib/firmware/rtlwifi/rtl8723fw.bin
|
||||
lib/firmware/rtlwifi/rtl8723fw_B.bin
|
||||
lib/firmware/rtlwifi/rtl8812aefw.bin
|
||||
lib/firmware/rtlwifi/rtl8812aefw_wowlan.bin
|
||||
lib/firmware/rtlwifi/rtl8821aefw.bin
|
||||
lib/firmware/rtlwifi/rtl8821aefw_29.bin
|
||||
lib/firmware/rtlwifi/rtl8821aefw_wowlan.bin
|
||||
lib/firmware/rtlwifi/rtl8822befw.bin
|
||||
lib/firmware/s2250.fw
|
||||
lib/firmware/s2250_loader.fw
|
||||
#lib/firmware/rtw88
|
||||
lib/firmware/rtw88/README
|
||||
lib/firmware/rtw88/rtw8822b_fw.bin
|
||||
lib/firmware/rtw88/rtw8822c_fw.bin
|
||||
lib/firmware/rtw88/rtw8822c_wow_fw.bin
|
||||
lib/firmware/s5p-mfc-v6-v2.fw
|
||||
lib/firmware/s5p-mfc-v6.fw
|
||||
lib/firmware/s5p-mfc-v7.fw
|
||||
@@ -1945,13 +2218,14 @@ lib/firmware/tdmb_nova_12mhz.inp
|
||||
#lib/firmware/tehuti
|
||||
lib/firmware/tehuti/bdx.bin
|
||||
#lib/firmware/ti-connectivity
|
||||
lib/firmware/ti-connectivity/TIInit_6.2.31.bts
|
||||
lib/firmware/ti-connectivity/TIInit_6.6.15.bts
|
||||
lib/firmware/ti-connectivity/TIInit_7.2.31.bts
|
||||
lib/firmware/ti-connectivity/wl1251-fw.bin
|
||||
lib/firmware/ti-connectivity/wl1251-nvs.bin
|
||||
lib/firmware/ti-connectivity/wl1271-fw-2.bin
|
||||
lib/firmware/ti-connectivity/wl1271-fw-ap.bin
|
||||
lib/firmware/ti-connectivity/wl1271-fw.bin
|
||||
lib/firmware/ti-connectivity/wl1271-nvs.bin
|
||||
lib/firmware/ti-connectivity/wl127x-fw-3.bin
|
||||
lib/firmware/ti-connectivity/wl127x-fw-4-mr.bin
|
||||
lib/firmware/ti-connectivity/wl127x-fw-4-plt.bin
|
||||
@@ -1972,7 +2246,6 @@ lib/firmware/ti-connectivity/wl128x-fw-ap.bin
|
||||
lib/firmware/ti-connectivity/wl128x-fw-plt-3.bin
|
||||
lib/firmware/ti-connectivity/wl128x-fw.bin
|
||||
lib/firmware/ti-connectivity/wl128x-nvs.bin
|
||||
lib/firmware/ti-connectivity/wl12xx-nvs.bin
|
||||
lib/firmware/ti-connectivity/wl18xx-fw-2.bin
|
||||
lib/firmware/ti-connectivity/wl18xx-fw-3.bin
|
||||
lib/firmware/ti-connectivity/wl18xx-fw-4.bin
|
||||
|
||||
@@ -24,7 +24,9 @@ usr/share/logwatch/default.conf/logfiles/cron.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/daemon.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/denyhosts.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dirsrv.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dnf-rpm.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dnssec.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dovecot.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/dpkg.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/emerge.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/eventlog.conf
|
||||
@@ -51,6 +53,7 @@ usr/share/logwatch/default.conf/logfiles/php.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/qmail-send-current.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/qmail-smtpd-current.conf
|
||||
usr/share/logwatch/default.conf/logfiles/resolver.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/rsnapshot.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/rt314.conf
|
||||
usr/share/logwatch/default.conf/logfiles/samba.conf
|
||||
#usr/share/logwatch/default.conf/logfiles/secure.conf
|
||||
@@ -86,6 +89,7 @@ usr/share/logwatch/default.conf/services/cron.conf
|
||||
#usr/share/logwatch/default.conf/services/denyhosts.conf
|
||||
usr/share/logwatch/default.conf/services/dhcpd.conf
|
||||
#usr/share/logwatch/default.conf/services/dirsrv.conf
|
||||
#usr/share/logwatch/default.conf/services/dnf-rpm.conf
|
||||
#usr/share/logwatch/default.conf/services/dnssec.conf
|
||||
#usr/share/logwatch/default.conf/services/dovecot.conf
|
||||
#usr/share/logwatch/default.conf/services/dpkg.conf
|
||||
@@ -146,6 +150,7 @@ usr/share/logwatch/default.conf/services/postfix.conf
|
||||
#usr/share/logwatch/default.conf/services/qmail.conf
|
||||
#usr/share/logwatch/default.conf/services/raid.conf
|
||||
usr/share/logwatch/default.conf/services/resolver.conf
|
||||
#usr/share/logwatch/default.conf/services/rsnapshot.conf
|
||||
#usr/share/logwatch/default.conf/services/rsyslogd.conf
|
||||
#usr/share/logwatch/default.conf/services/rt314.conf
|
||||
usr/share/logwatch/default.conf/services/samba.conf
|
||||
@@ -178,7 +183,6 @@ usr/share/logwatch/default.conf/services/windows.conf
|
||||
#usr/share/logwatch/default.conf/services/yum.conf
|
||||
#usr/share/logwatch/default.conf/services/zypp.conf
|
||||
usr/share/logwatch/default.conf/services/zz-disk_space.conf
|
||||
#usr/share/logwatch/default.conf/services/zz-fortune.conf
|
||||
usr/share/logwatch/default.conf/services/zz-lm_sensors.conf
|
||||
usr/share/logwatch/default.conf/services/zz-network.conf
|
||||
usr/share/logwatch/default.conf/services/zz-runtime.conf
|
||||
@@ -230,6 +234,7 @@ usr/share/logwatch/scripts/services/cron
|
||||
usr/share/logwatch/scripts/services/dhcpd
|
||||
usr/share/logwatch/scripts/services/dialup
|
||||
#usr/share/logwatch/scripts/services/dirsrv
|
||||
#usr/share/logwatch/scripts/services/dnf-rpm
|
||||
#usr/share/logwatch/scripts/services/dnssec
|
||||
#usr/share/logwatch/scripts/services/dovecot
|
||||
#usr/share/logwatch/scripts/services/dpkg
|
||||
@@ -290,6 +295,7 @@ usr/share/logwatch/scripts/services/postfix
|
||||
#usr/share/logwatch/scripts/services/qmail-smtpd
|
||||
#usr/share/logwatch/scripts/services/raid
|
||||
usr/share/logwatch/scripts/services/resolver
|
||||
#usr/share/logwatch/scripts/services/rsnapshot
|
||||
#usr/share/logwatch/scripts/services/rsyslogd
|
||||
#usr/share/logwatch/scripts/services/rt314
|
||||
usr/share/logwatch/scripts/services/samba
|
||||
@@ -322,7 +328,6 @@ usr/share/logwatch/scripts/services/windows
|
||||
#usr/share/logwatch/scripts/services/yum
|
||||
#usr/share/logwatch/scripts/services/zypp
|
||||
usr/share/logwatch/scripts/services/zz-disk_space
|
||||
#usr/share/logwatch/scripts/services/zz-fortune
|
||||
usr/share/logwatch/scripts/services/zz-lm_sensors
|
||||
usr/share/logwatch/scripts/services/zz-network
|
||||
usr/share/logwatch/scripts/services/zz-runtime
|
||||
@@ -340,6 +345,7 @@ usr/share/logwatch/scripts/shared/eventlogremoveservice
|
||||
usr/share/logwatch/scripts/shared/expandrepeats
|
||||
usr/share/logwatch/scripts/shared/hosthash
|
||||
usr/share/logwatch/scripts/shared/hostlist
|
||||
usr/share/logwatch/scripts/shared/journalctl
|
||||
usr/share/logwatch/scripts/shared/multiservice
|
||||
usr/share/logwatch/scripts/shared/onlycontains
|
||||
usr/share/logwatch/scripts/shared/onlyhost
|
||||
|
||||
@@ -9,7 +9,7 @@ usr/bin/lz4
|
||||
#usr/lib/liblz4.a
|
||||
#usr/lib/liblz4.so
|
||||
usr/lib/liblz4.so.1
|
||||
usr/lib/liblz4.so.1.8.1
|
||||
usr/lib/liblz4.so.1.9.2
|
||||
#usr/lib/pkgconfig/liblz4.pc
|
||||
#usr/share/man/man1/lz4.1
|
||||
#usr/share/man/man1/lz4c.1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#usr/bin/pcre-config
|
||||
#usr/bin/pcregrep
|
||||
usr/bin/pcregrep
|
||||
#usr/bin/pcretest
|
||||
#usr/include/pcre.h
|
||||
#usr/include/pcre_scanner.h
|
||||
|
||||
@@ -8,11 +8,12 @@
|
||||
#usr/include/readline/rltypedefs.h
|
||||
#usr/include/readline/tilde.h
|
||||
#usr/lib/libhistory.so
|
||||
usr/lib/libhistory.so.6
|
||||
usr/lib/libhistory.so.6.3
|
||||
usr/lib/libhistory.so.8
|
||||
usr/lib/libhistory.so.8.0
|
||||
#usr/lib/libreadline.so
|
||||
usr/lib/libreadline.so.6
|
||||
usr/lib/libreadline.so.6.3
|
||||
usr/lib/libreadline.so.8
|
||||
usr/lib/libreadline.so.8.0
|
||||
#usr/lib/pkgconfig/readline.pc
|
||||
#usr/share/doc/readline
|
||||
#usr/share/doc/readline/CHANGES
|
||||
#usr/share/doc/readline/INSTALL
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
lib/libhistory.so.5
|
||||
lib/libhistory.so.5.2
|
||||
lib/libreadline.so.5
|
||||
lib/libreadline.so.5.2
|
||||
lib/libhistory.so.6
|
||||
lib/libhistory.so.6.3
|
||||
lib/libreadline.so.6
|
||||
lib/libreadline.so.6.3
|
||||
|
||||
@@ -11,7 +11,7 @@ etc/unbound/unbound.conf
|
||||
#usr/lib/libunbound.la
|
||||
#usr/lib/libunbound.so
|
||||
usr/lib/libunbound.so.8
|
||||
usr/lib/libunbound.so.8.1.4
|
||||
usr/lib/libunbound.so.8.1.5
|
||||
#usr/lib/pkgconfig/libunbound.pc
|
||||
usr/sbin/unbound
|
||||
usr/sbin/unbound-anchor
|
||||
|
||||
@@ -47,6 +47,7 @@ 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/05-update-dns-forwarders
|
||||
@@ -62,6 +63,7 @@ etc/rc.d/init.d/networking/red.up/30-ddns
|
||||
etc/rc.d/init.d/networking/red.up/50-ipsec
|
||||
etc/rc.d/init.d/networking/red.up/50-ovpn
|
||||
etc/rc.d/init.d/networking/red.up/98-leds
|
||||
etc/rc.d/init.d/networking/red.up/99-beep
|
||||
etc/rc.d/init.d/networking/red.up/99-fireinfo
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/rc.d/init.d/networking/red.up/99-pakfire-update
|
||||
|
||||
@@ -89,6 +89,7 @@ lib/firmware/intel-ucode/06-8e-0c
|
||||
lib/firmware/intel-ucode/06-9e-09
|
||||
lib/firmware/intel-ucode/06-9e-0a
|
||||
lib/firmware/intel-ucode/06-9e-0b
|
||||
lib/firmware/intel-ucode/06-9e-0c
|
||||
lib/firmware/intel-ucode/06-9e-0d
|
||||
lib/firmware/intel-ucode/06-a6-00
|
||||
lib/firmware/intel-ucode/0f-00-07
|
||||
|
||||
@@ -12126,7 +12126,7 @@ etc/modprobe.d/ipv6.conf
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/intel/pstate.h
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/intel/tsx
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/intel/tsx/mode
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/intel/tsx/mode/auto.h
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/intel/tsx/mode/off.h
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/internode
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/internode/cache
|
||||
#lib/modules/KVER-ipfire/build/include/config/x86/internode/cache/shift.h
|
||||
|
||||
@@ -800,6 +800,7 @@ usr/lib/python2.7/dis.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.py
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyc
|
||||
#usr/lib/python2.7/distutils/tests/__init__.pyo
|
||||
#usr/lib/python2.7/distutils/tests/includetest.rst
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.py
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyc
|
||||
#usr/lib/python2.7/distutils/tests/setuptools_build_ext.pyo
|
||||
@@ -1463,8 +1464,8 @@ usr/lib/python2.7/encodings/zlib_codec.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyc
|
||||
#usr/lib/python2.7/ensurepip/__main__.pyo
|
||||
#usr/lib/python2.7/ensurepip/_bundled
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-9.0.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-39.0.1-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.py
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyc
|
||||
#usr/lib/python2.7/ensurepip/_uninstall.pyo
|
||||
@@ -1926,7 +1927,7 @@ usr/lib/python2.7/json/tool.pyc
|
||||
usr/lib/python2.7/keyword.pyc
|
||||
#usr/lib/python2.7/keyword.pyo
|
||||
#usr/lib/python2.7/lib-dynload
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.15-py2.7.egg-info
|
||||
#usr/lib/python2.7/lib-dynload/Python-2.7.17-py2.7.egg-info
|
||||
usr/lib/python2.7/lib-dynload/_bisect.so
|
||||
usr/lib/python2.7/lib-dynload/_bsddb.so
|
||||
usr/lib/python2.7/lib-dynload/_codecs_cn.so
|
||||
@@ -2043,6 +2044,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_loadtk.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_misc.pyo
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.py
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyc
|
||||
#usr/lib/python2.7/lib-tk/test/test_tkinter/test_text.pyo
|
||||
@@ -2100,9 +2104,9 @@ usr/lib/python2.7/lib-dynload/zlib.so
|
||||
#usr/lib/python2.7/lib-tk/turtle.pyo
|
||||
#usr/lib/python2.7/lib2to3
|
||||
#usr/lib/python2.7/lib2to3/Grammar.txt
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/Grammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar.txt
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.15.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/PatternGrammar2.7.17.final.0.pickle
|
||||
#usr/lib/python2.7/lib2to3/__init__.py
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyc
|
||||
#usr/lib/python2.7/lib2to3/__init__.pyo
|
||||
@@ -2793,9 +2797,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/badsyntax_future8.py
|
||||
#usr/lib/python2.7/test/badsyntax_future9.py
|
||||
#usr/lib/python2.7/test/badsyntax_nocaret.py
|
||||
#usr/lib/python2.7/test/bisect.py
|
||||
#usr/lib/python2.7/test/bisect.pyc
|
||||
#usr/lib/python2.7/test/bisect.pyo
|
||||
#usr/lib/python2.7/test/bisect_cmd.py
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyc
|
||||
#usr/lib/python2.7/test/bisect_cmd.pyo
|
||||
#usr/lib/python2.7/test/capath
|
||||
#usr/lib/python2.7/test/capath/0e4015b9.0
|
||||
#usr/lib/python2.7/test/capath/4e1295a3.0
|
||||
@@ -2803,6 +2807,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/capath/6e88d7b8.0
|
||||
#usr/lib/python2.7/test/capath/99d0fa06.0
|
||||
#usr/lib/python2.7/test/capath/ce7b8643.0
|
||||
#usr/lib/python2.7/test/capath/efa5f9c3.0
|
||||
#usr/lib/python2.7/test/cfgparser.1
|
||||
#usr/lib/python2.7/test/cjkencodings
|
||||
#usr/lib/python2.7/test/cjkencodings/big5-utf8.txt
|
||||
@@ -2985,7 +2990,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegral.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/tointegralx.decTest
|
||||
#usr/lib/python2.7/test/decimaltestdata/xor.decTest
|
||||
#usr/lib/python2.7/test/dh1024.pem
|
||||
#usr/lib/python2.7/test/doctest_aliases.py
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyc
|
||||
#usr/lib/python2.7/test/doctest_aliases.pyo
|
||||
@@ -2994,6 +2998,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/double_const.pyo
|
||||
#usr/lib/python2.7/test/empty.vbs
|
||||
#usr/lib/python2.7/test/exception_hierarchy.txt
|
||||
#usr/lib/python2.7/test/ffdh3072.pem
|
||||
#usr/lib/python2.7/test/floating_points.txt
|
||||
#usr/lib/python2.7/test/fork_wait.py
|
||||
#usr/lib/python2.7/test/fork_wait.pyc
|
||||
@@ -3139,6 +3144,7 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.py
|
||||
#usr/lib/python2.7/test/symlink_support.pyc
|
||||
#usr/lib/python2.7/test/symlink_support.pyo
|
||||
#usr/lib/python2.7/test/talos-2019-0758.pem
|
||||
#usr/lib/python2.7/test/test_MimeWriter.py
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyc
|
||||
#usr/lib/python2.7/test/test_MimeWriter.pyo
|
||||
@@ -3214,6 +3220,9 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.py
|
||||
#usr/lib/python2.7/test/test_bastion.pyc
|
||||
#usr/lib/python2.7/test/test_bastion.pyo
|
||||
#usr/lib/python2.7/test/test_bdb.py
|
||||
#usr/lib/python2.7/test/test_bdb.pyc
|
||||
#usr/lib/python2.7/test/test_bdb.pyo
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.py
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyc
|
||||
#usr/lib/python2.7/test/test_bigaddrspace.pyo
|
||||
@@ -4395,7 +4404,6 @@ usr/lib/python2.7/tempfile.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.py
|
||||
#usr/lib/python2.7/test/win_console_handler.pyc
|
||||
#usr/lib/python2.7/test/win_console_handler.pyo
|
||||
#usr/lib/python2.7/test/wrongcert.pem
|
||||
#usr/lib/python2.7/test/xmltestdata
|
||||
#usr/lib/python2.7/test/xmltestdata/expat224_utf8_bug.xml
|
||||
#usr/lib/python2.7/test/xmltestdata/simple-ns.xml
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
srv/web/ipfire/cgi-bin/credits.cgi
|
||||
var/ipfire/langs
|
||||
srv/web/ipfire/cgi-bin/vulnerabilities.cgi
|
||||
@@ -1 +0,0 @@
|
||||
../../../../common/i586/intel-microcode
|
||||
@@ -1 +0,0 @@
|
||||
../../../../common/x86_64/intel-microcode
|
||||
1
config/rootfiles/core/139/filelists/aarch64/python
Symbolic link
1
config/rootfiles/core/139/filelists/aarch64/python
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/aarch64/python
|
||||
1
config/rootfiles/core/139/filelists/armv5tel/python
Symbolic link
1
config/rootfiles/core/139/filelists/armv5tel/python
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/armv5tel/python
|
||||
1
config/rootfiles/core/139/filelists/cpio
Symbolic link
1
config/rootfiles/core/139/filelists/cpio
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/cpio
|
||||
@@ -5,12 +5,24 @@ var/ipfire/langs
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface.conf
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface-ssl.conf
|
||||
etc/rc.d/init.d/functions
|
||||
etc/rc.d/init.d/leds
|
||||
etc/rc.d/init.d/networking/dhcpcd.exe
|
||||
etc/rc.d/init.d/networking/red
|
||||
etc/rc.d/init.d/networking/functions.network
|
||||
etc/rc.d/init.d/networking/red.down/99-beep
|
||||
etc/rc.d/init.d/networking/red.up/23-suricata
|
||||
etc/rc.d/init.d/networking/red.up/99-beep
|
||||
etc/rc.d/init.d/unbound
|
||||
etc/suricata/suricata.yaml
|
||||
etc/ppp/ip-down
|
||||
etc/ppp/ip-up
|
||||
srv/web/ipfire/cgi-bin/captive.cgi
|
||||
srv/web/ipfire/cgi-bin/ids.cgi
|
||||
srv/web/ipfire/cgi-bin/mail.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
usr/bin/pcregrep
|
||||
usr/sbin/convert-snort
|
||||
usr/lib/firewall/firewall-lib.pl
|
||||
var/ipfire/dhcpc/dhcpcd-hooks/10-mtu
|
||||
var/ipfire/ids-functions.pl
|
||||
var/ipfire/proxy/calamaris/bin/mkreport
|
||||
|
||||
1
config/rootfiles/core/139/filelists/hwdata
Symbolic link
1
config/rootfiles/core/139/filelists/hwdata
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/hwdata
|
||||
1
config/rootfiles/core/139/filelists/i586/python
Symbolic link
1
config/rootfiles/core/139/filelists/i586/python
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/python
|
||||
386
config/rootfiles/core/139/filelists/linux-firmware-new_files
Normal file
386
config/rootfiles/core/139/filelists/linux-firmware-new_files
Normal file
@@ -0,0 +1,386 @@
|
||||
lib/firmware/amd
|
||||
lib/firmware/amdgpu/carrizo_ce.bin
|
||||
lib/firmware/amdgpu/carrizo_me.bin
|
||||
lib/firmware/amdgpu/carrizo_mec2.bin
|
||||
lib/firmware/amdgpu/carrizo_mec.bin
|
||||
lib/firmware/amdgpu/carrizo_pfp.bin
|
||||
lib/firmware/amdgpu/fiji_ce.bin
|
||||
lib/firmware/amdgpu/fiji_me.bin
|
||||
lib/firmware/amdgpu/fiji_mec2.bin
|
||||
lib/firmware/amdgpu/fiji_mec.bin
|
||||
lib/firmware/amdgpu/fiji_pfp.bin
|
||||
lib/firmware/amdgpu/fiji_vce.bin
|
||||
lib/firmware/amdgpu/navi10_asd.bin
|
||||
lib/firmware/amdgpu/navi10_ce.bin
|
||||
lib/firmware/amdgpu/navi10_gpu_info.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_vcn.bin
|
||||
lib/firmware/amdgpu/navi14_asd.bin
|
||||
lib/firmware/amdgpu/navi14_ce.bin
|
||||
lib/firmware/amdgpu/navi14_gpu_info.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_vcn.bin
|
||||
lib/firmware/amdgpu/picasso_asd.bin
|
||||
lib/firmware/amdgpu/picasso_ce.bin
|
||||
lib/firmware/amdgpu/picasso_gpu_info.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_am4.bin
|
||||
lib/firmware/amdgpu/picasso_rlc.bin
|
||||
lib/firmware/amdgpu/picasso_sdma.bin
|
||||
lib/firmware/amdgpu/picasso_vcn.bin
|
||||
lib/firmware/amdgpu/polaris10_k2_smc.bin
|
||||
lib/firmware/amdgpu/polaris10_k_mc.bin
|
||||
lib/firmware/amdgpu/polaris10_k_smc.bin
|
||||
lib/firmware/amdgpu/polaris10_mc.bin
|
||||
lib/firmware/amdgpu/polaris10_me_2.bin
|
||||
lib/firmware/amdgpu/polaris10_mec2_2.bin
|
||||
lib/firmware/amdgpu/polaris10_mec_2.bin
|
||||
lib/firmware/amdgpu/polaris10_pfp_2.bin
|
||||
lib/firmware/amdgpu/polaris10_smc.bin
|
||||
lib/firmware/amdgpu/polaris10_smc_sk.bin
|
||||
lib/firmware/amdgpu/polaris11_k2_smc.bin
|
||||
lib/firmware/amdgpu/polaris11_k_mc.bin
|
||||
lib/firmware/amdgpu/polaris11_k_smc.bin
|
||||
lib/firmware/amdgpu/polaris11_me_2.bin
|
||||
lib/firmware/amdgpu/polaris11_mec2_2.bin
|
||||
lib/firmware/amdgpu/polaris11_mec_2.bin
|
||||
lib/firmware/amdgpu/polaris11_pfp_2.bin
|
||||
lib/firmware/amdgpu/polaris11_smc.bin
|
||||
lib/firmware/amdgpu/polaris11_smc_sk.bin
|
||||
lib/firmware/amdgpu/polaris12_k_mc.bin
|
||||
lib/firmware/amdgpu/polaris12_k_smc.bin
|
||||
lib/firmware/amdgpu/polaris12_me_2.bin
|
||||
lib/firmware/amdgpu/polaris12_mec2_2.bin
|
||||
lib/firmware/amdgpu/polaris12_mec_2.bin
|
||||
lib/firmware/amdgpu/polaris12_pfp_2.bin
|
||||
lib/firmware/amdgpu/raven2_asd.bin
|
||||
lib/firmware/amdgpu/raven2_ce.bin
|
||||
lib/firmware/amdgpu/raven2_gpu_info.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_rlc.bin
|
||||
lib/firmware/amdgpu/raven2_sdma.bin
|
||||
lib/firmware/amdgpu/raven2_vcn.bin
|
||||
lib/firmware/amdgpu/raven_asd.bin
|
||||
lib/firmware/amdgpu/raven_dmcu.bin
|
||||
lib/firmware/amdgpu/raven_kicker_rlc.bin
|
||||
lib/firmware/amdgpu/raven_rlc.bin
|
||||
lib/firmware/amdgpu/raven_sdma.bin
|
||||
lib/firmware/amdgpu/tonga_k_smc.bin
|
||||
lib/firmware/amdgpu/vega10_acg_smc.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/vega10_rlc.bin
|
||||
lib/firmware/amdgpu/vega10_sdma1.bin
|
||||
lib/firmware/amdgpu/vega10_sdma.bin
|
||||
lib/firmware/amdgpu/vega10_smc.bin
|
||||
lib/firmware/amdgpu/vega10_sos.bin
|
||||
lib/firmware/amdgpu/vega10_uvd.bin
|
||||
lib/firmware/amdgpu/vega10_vce.bin
|
||||
lib/firmware/amdgpu/vega12_asd.bin
|
||||
lib/firmware/amdgpu/vega12_ce.bin
|
||||
lib/firmware/amdgpu/vega12_gpu_info.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_rlc.bin
|
||||
lib/firmware/amdgpu/vega12_sdma1.bin
|
||||
lib/firmware/amdgpu/vega12_sdma.bin
|
||||
lib/firmware/amdgpu/vega12_smc.bin
|
||||
lib/firmware/amdgpu/vega12_sos.bin
|
||||
lib/firmware/amdgpu/vega12_uvd.bin
|
||||
lib/firmware/amdgpu/vega12_vce.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_rlc.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_uvd.bin
|
||||
lib/firmware/amdgpu/vega20_vce.bin
|
||||
lib/firmware/amd-ucode/microcode_amd_fam17h.bin
|
||||
lib/firmware/amd-ucode/microcode_amd_fam17h.bin.asc
|
||||
lib/firmware/ath10k/QCA4019/hw1.0/board-2.bin
|
||||
lib/firmware/ath10k/QCA4019/hw1.0/firmware-5.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/notice_ath10k_firmware-6.txt
|
||||
lib/firmware/ath10k/QCA9377/hw1.0/firmware-6.bin
|
||||
lib/firmware/ath10k/QCA9377/hw1.0/notice_ath10k_firmware-6.txt
|
||||
lib/firmware/ath10k/QCA9887/hw1.0/firmware-5.bin
|
||||
lib/firmware/ath10k/QCA9888/hw2.0/board-2.bin
|
||||
lib/firmware/ath10k/QCA9888/hw2.0/firmware-5.bin
|
||||
lib/firmware/ath10k/QCA988X/hw2.0/firmware-5.bin
|
||||
lib/firmware/ath10k/QCA9984/hw1.0/board-2.bin
|
||||
lib/firmware/ath10k/QCA9984/hw1.0/firmware-5.bin
|
||||
lib/firmware/bnx2x/bnx2x-e1-7.13.11.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e1h-7.13.11.0.fw
|
||||
lib/firmware/bnx2x/bnx2x-e2-7.13.11.0.fw
|
||||
lib/firmware/brcm/brcmfmac4330-sdio.Prowise-PT301.txt
|
||||
lib/firmware/brcm/brcmfmac43340-sdio.meegopad-t08.txt
|
||||
lib/firmware/brcm/brcmfmac43340-sdio.pov-tab-p1006w-data.txt
|
||||
lib/firmware/brcm/brcmfmac43362-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43362-sdio.cubietech,cubietruck.txt
|
||||
lib/firmware/brcm/brcmfmac43362-sdio.lemaker,bananapro.txt
|
||||
lib/firmware/brcm/brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt
|
||||
lib/firmware/brcm/brcmfmac43430a0-sdio.ONDA-V80_PLUS.txt
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,3-model-b.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.MINIX-NEO_Z83-4.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt
|
||||
lib/firmware/brcm/brcmfmac4356-pcie.gpd-win-pocket.txt
|
||||
lib/firmware/brcm/brcmfmac4366b-pcie.bin
|
||||
lib/firmware/brcm/brcmfmac4366c-pcie.bin
|
||||
lib/firmware/cadence
|
||||
lib/firmware/cavium/cnn55xx_ae.fw
|
||||
lib/firmware/cavium/cnn55xx_se.fw
|
||||
lib/firmware/check_whence.py
|
||||
lib/firmware/copy-firmware.sh
|
||||
lib/firmware/cxgb4/configs
|
||||
lib/firmware/cxgb4/t4fw-1.24.3.0.bin
|
||||
lib/firmware/cxgb4/t5fw-1.24.3.0.bin
|
||||
lib/firmware/cxgb4/t6fw-1.24.3.0.bin
|
||||
lib/firmware/dpaa2
|
||||
lib/firmware/hfi1_dc8051.fw
|
||||
lib/firmware/i915/bxt_guc_32.0.3.bin
|
||||
lib/firmware/i915/bxt_guc_33.0.0.bin
|
||||
lib/firmware/i915/bxt_huc_2.0.0.bin
|
||||
lib/firmware/i915/bxt_huc_ver01_8_2893.bin
|
||||
lib/firmware/i915/cml_guc_33.0.0.bin
|
||||
lib/firmware/i915/cml_huc_4.0.0.bin
|
||||
lib/firmware/i915/glk_guc_32.0.3.bin
|
||||
lib/firmware/i915/glk_guc_33.0.0.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_huc_9.0.0.bin
|
||||
lib/firmware/i915/icl_huc_ver8_4_3238.bin
|
||||
lib/firmware/i915/kbl_guc_32.0.3.bin
|
||||
lib/firmware/i915/kbl_guc_33.0.0.bin
|
||||
lib/firmware/i915/kbl_huc_4.0.0.bin
|
||||
lib/firmware/i915/skl_guc_32.0.3.bin
|
||||
lib/firmware/i915/skl_guc_33.0.0.bin
|
||||
lib/firmware/i915/skl_huc_2.0.0.bin
|
||||
lib/firmware/i915/tgl_dmc_ver2_04.bin
|
||||
lib/firmware/imx/sdma/sdma-imx6q.bin
|
||||
lib/firmware/imx/sdma/sdma-imx7d.bin
|
||||
lib/firmware/intel/dsp_fw_cnl_v1858.bin
|
||||
lib/firmware/intel/ibt-11-5.sfi
|
||||
lib/firmware/intel/ibt-12-16.sfi
|
||||
lib/firmware/intel/ibt-17-16-1.ddc
|
||||
lib/firmware/intel/ibt-17-16-1.sfi
|
||||
lib/firmware/intel/ibt-17-2.ddc
|
||||
lib/firmware/intel/ibt-17-2.sfi
|
||||
lib/firmware/intel/ibt-18-16-1.ddc
|
||||
lib/firmware/intel/ibt-18-16-1.sfi
|
||||
lib/firmware/intel/ibt-18-2.ddc
|
||||
lib/firmware/intel/ibt-18-2.sfi
|
||||
lib/firmware/intel/ibt-19-0-0.ddc
|
||||
lib/firmware/intel/ibt-19-0-0.sfi
|
||||
lib/firmware/intel/ibt-19-0-1.ddc
|
||||
lib/firmware/intel/ibt-19-0-1.sfi
|
||||
lib/firmware/intel/ibt-19-0-4.ddc
|
||||
lib/firmware/intel/ibt-19-0-4.sfi
|
||||
lib/firmware/intel/ibt-19-16-4.ddc
|
||||
lib/firmware/intel/ibt-19-16-4.sfi
|
||||
lib/firmware/intel/ibt-19-32-0.ddc
|
||||
lib/firmware/intel/ibt-19-32-0.sfi
|
||||
lib/firmware/intel/ibt-19-32-1.ddc
|
||||
lib/firmware/intel/ibt-19-32-1.sfi
|
||||
lib/firmware/intel/ibt-19-32-4.ddc
|
||||
lib/firmware/intel/ibt-19-32-4.sfi
|
||||
lib/firmware/intel/ibt-20-0-3.ddc
|
||||
lib/firmware/intel/ibt-20-0-3.sfi
|
||||
lib/firmware/intel/ibt-20-1-3.ddc
|
||||
lib/firmware/intel/ibt-20-1-3.sfi
|
||||
lib/firmware/intel/ibt-20-1-4.ddc
|
||||
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
|
||||
lib/firmware/iwlwifi-3160-17.ucode
|
||||
lib/firmware/iwlwifi-3168-29.ucode
|
||||
lib/firmware/iwlwifi-7260-17.ucode
|
||||
lib/firmware/iwlwifi-7265-17.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-38.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-41.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-43.ucode
|
||||
lib/firmware/iwlwifi-9000-pu-b0-jf-b0-46.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-38.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-41.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-43.ucode
|
||||
lib/firmware/iwlwifi-9260-th-b0-jf-b0-46.ucode
|
||||
lib/firmware/iwlwifi-cc-a0-46.ucode
|
||||
lib/firmware/iwlwifi-cc-a0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-b0-hr-b0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-b0-jf-b0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-c0-hr-b0-48.ucode
|
||||
lib/firmware/iwlwifi-Qu-c0-jf-b0-48.ucode
|
||||
lib/firmware/iwlwifi-QuZ-a0-hr-b0-48.ucode
|
||||
lib/firmware/iwlwifi-QuZ-a0-jf-b0-48.ucode
|
||||
lib/firmware/LICENCE.cadence
|
||||
lib/firmware/LICENCE.cavium_liquidio
|
||||
lib/firmware/LICENCE.Marvell
|
||||
lib/firmware/LICENCE.microchip
|
||||
lib/firmware/LICENSE.amdgpu
|
||||
lib/firmware/LICENSE.amd-sev
|
||||
lib/firmware/LICENSE.amlogic_vdec
|
||||
lib/firmware/LICENSE.ice
|
||||
lib/firmware/LICENSE.nxp_mc_firmware
|
||||
lib/firmware/Makefile
|
||||
lib/firmware/mediatek/mt7610e.bin
|
||||
lib/firmware/mediatek/mt7610u.bin
|
||||
lib/firmware/mediatek/mt7615_cr4.bin
|
||||
lib/firmware/mediatek/mt7615_n9.bin
|
||||
lib/firmware/mediatek/mt7615_rom_patch.bin
|
||||
lib/firmware/mediatek/mt7650e.bin
|
||||
lib/firmware/mediatek/mt7668pr2h.bin
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1703.4.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.1910.622.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.2000.1122.mfa2
|
||||
lib/firmware/mellanox/mlxsw_spectrum-13.2000.1886.mfa2
|
||||
lib/firmware/meson
|
||||
lib/firmware/microchip
|
||||
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/sd8787_uapsta.bin
|
||||
lib/firmware/mrvl/sd8797_uapsta.bin
|
||||
lib/firmware/mrvl/sd8801_uapsta.bin
|
||||
lib/firmware/mrvl/sd8887_uapsta.bin
|
||||
lib/firmware/mrvl/sd8897_uapsta.bin
|
||||
lib/firmware/mrvl/sdsd8977_combo_v2.bin
|
||||
lib/firmware/mrvl/sdsd8997_combo_v4.bin
|
||||
lib/firmware/mrvl/usb8797_uapsta.bin
|
||||
lib/firmware/mrvl/usb8801_uapsta.bin
|
||||
lib/firmware/mrvl/usbusb8997_combo_v4.bin
|
||||
lib/firmware/netronome/bpf
|
||||
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/netronome/nic/nic_AMDA0058-0011_2x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0058-0012_2x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0078-0011_1x100.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0081-0001_1x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0081-0001_4x10.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0096-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0097-0001_2x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0097-0001_4x10_1x40.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0097-0001_8x10.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0099-0001_1x10_1x25.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0099-0001_2x10.nffw
|
||||
lib/firmware/netronome/nic/nic_AMDA0099-0001_2x25.nffw
|
||||
lib/firmware/netronome/nic-sriov
|
||||
lib/firmware/nvidia/gp102/acr/bl.bin
|
||||
lib/firmware/nvidia/gp102/acr/ucode_load.bin
|
||||
lib/firmware/nvidia/gp102/acr/ucode_unload.bin
|
||||
lib/firmware/nvidia/gp102/acr/unload_bl.bin
|
||||
lib/firmware/nvidia/gp102/nvdec/scrubber.bin
|
||||
lib/firmware/nvidia/gp102/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp102/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp102/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp104/acr/bl.bin
|
||||
lib/firmware/nvidia/gp104/acr/ucode_load.bin
|
||||
lib/firmware/nvidia/gp104/acr/ucode_unload.bin
|
||||
lib/firmware/nvidia/gp104/acr/unload_bl.bin
|
||||
lib/firmware/nvidia/gp104/nvdec/scrubber.bin
|
||||
lib/firmware/nvidia/gp104/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp104/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp104/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp106/acr/bl.bin
|
||||
lib/firmware/nvidia/gp106/acr/ucode_load.bin
|
||||
lib/firmware/nvidia/gp106/acr/ucode_unload.bin
|
||||
lib/firmware/nvidia/gp106/acr/unload_bl.bin
|
||||
lib/firmware/nvidia/gp106/nvdec/scrubber.bin
|
||||
lib/firmware/nvidia/gp106/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp106/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp106/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gp107/acr/bl.bin
|
||||
lib/firmware/nvidia/gp107/acr/ucode_load.bin
|
||||
lib/firmware/nvidia/gp107/acr/ucode_unload.bin
|
||||
lib/firmware/nvidia/gp107/acr/unload_bl.bin
|
||||
lib/firmware/nvidia/gp107/nvdec/scrubber.bin
|
||||
lib/firmware/nvidia/gp107/sec2/desc-1.bin
|
||||
lib/firmware/nvidia/gp107/sec2/image-1.bin
|
||||
lib/firmware/nvidia/gp107/sec2/sig-1.bin
|
||||
lib/firmware/nvidia/gv100
|
||||
lib/firmware/nvidia/tegra186/xusb.bin
|
||||
lib/firmware/nvidia/tegra194
|
||||
lib/firmware/nvidia/tegra210/xusb.bin
|
||||
lib/firmware/nvidia/tu10x
|
||||
lib/firmware/qat_895xcc.bin
|
||||
lib/firmware/qat_c3xxx.bin
|
||||
lib/firmware/qat_c62x.bin
|
||||
lib/firmware/qca/crbtfw21.tlv
|
||||
lib/firmware/qca/crnv21.bin
|
||||
lib/firmware/qca/NOTICE.txt
|
||||
lib/firmware/qca/nvm_00440302.bin
|
||||
lib/firmware/qca/nvm_usb_00000302.bin
|
||||
lib/firmware/qca/rampatch_00440302.bin
|
||||
lib/firmware/qca/rampatch_usb_00000302.bin
|
||||
lib/firmware/qcom/a630_gmu.bin
|
||||
lib/firmware/qcom/a630_sqe.fw
|
||||
lib/firmware/qcom/venus-5.2/venus.b00
|
||||
lib/firmware/qcom/venus-5.2/venus.b01
|
||||
lib/firmware/qcom/venus-5.2/venus.b02
|
||||
lib/firmware/qcom/venus-5.2/venus.b03
|
||||
lib/firmware/qcom/venus-5.2/venus.mbn
|
||||
lib/firmware/qcom/venus-5.2/venus.mdt
|
||||
lib/firmware/qed/qed_init_values-8.37.7.0.bin
|
||||
lib/firmware/qed/qed_init_values_zipped-8.37.7.0.bin
|
||||
lib/firmware/rsi/rs9113_ap_bt_dual_mode.rps
|
||||
lib/firmware/rsi/rs9113_wlan_bt_dual_mode.rps
|
||||
lib/firmware/rsi/rs9113_wlan_qspi.rps
|
||||
lib/firmware/rsi/rs9116_wlan_bt_classic.rps
|
||||
lib/firmware/rsi/rs9116_wlan.rps
|
||||
lib/firmware/rtl_bt/rtl8723bs_config-OBDA8723.bin
|
||||
lib/firmware/rtl_bt/rtl8723bs_fw.bin
|
||||
lib/firmware/rtl_bt/rtl8723d_fw.bin
|
||||
lib/firmware/rtl_bt/rtl8822cu_fw.bin
|
||||
lib/firmware/rtl_nic/rtl8125a-3.fw
|
||||
lib/firmware/rtlwifi/rtl8812aefw.bin
|
||||
lib/firmware/rtlwifi/rtl8812aefw_wowlan.bin
|
||||
lib/firmware/rtw88
|
||||
lib/firmware/ti-connectivity/TIInit_6.2.31.bts
|
||||
lib/firmware/ti-connectivity/TIInit_6.6.15.bts
|
||||
lib/firmware/vpu_d.bin
|
||||
lib/firmware/vpu_p.bin
|
||||
lib/firmware/WHENCE
|
||||
1
config/rootfiles/core/139/filelists/openssh
Symbolic link
1
config/rootfiles/core/139/filelists/openssh
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssh
|
||||
1
config/rootfiles/core/139/filelists/unbound
Symbolic link
1
config/rootfiles/core/139/filelists/unbound
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/unbound
|
||||
1
config/rootfiles/core/139/filelists/x86_64/python
Symbolic link
1
config/rootfiles/core/139/filelists/x86_64/python
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/x86_64/python
|
||||
1
config/rootfiles/core/139/meta
Normal file
1
config/rootfiles/core/139/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
@@ -49,6 +49,9 @@ done
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# move nobeeps if exist
|
||||
[ -e "/var/ipfire/ppp/nobeeps" ] mv /var/ipfire/ppp/nobeeps /var/ipfire/red/nobeeps
|
||||
|
||||
# update linker config
|
||||
ldconfig
|
||||
|
||||
|
||||
1
config/rootfiles/oldcore/137/filelists/IO-Socket-SSL
Symbolic link
1
config/rootfiles/oldcore/137/filelists/IO-Socket-SSL
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/IO-Socket-SSL
|
||||
1
config/rootfiles/oldcore/137/filelists/Net_SSLeay
Symbolic link
1
config/rootfiles/oldcore/137/filelists/Net_SSLeay
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/Net_SSLeay
|
||||
1
config/rootfiles/oldcore/137/filelists/bind
Symbolic link
1
config/rootfiles/oldcore/137/filelists/bind
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/bind
|
||||
1
config/rootfiles/oldcore/137/filelists/collectd
Symbolic link
1
config/rootfiles/oldcore/137/filelists/collectd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/collectd
|
||||
1
config/rootfiles/oldcore/137/filelists/dhcpcd
Symbolic link
1
config/rootfiles/oldcore/137/filelists/dhcpcd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dhcpcd
|
||||
22
config/rootfiles/oldcore/137/filelists/files
Normal file
22
config/rootfiles/oldcore/137/filelists/files
Normal file
@@ -0,0 +1,22 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
srv/web/ipfire/cgi-bin/credits.cgi
|
||||
usr/lib/firewall/rules.pl
|
||||
usr/sbin/firewall-policy
|
||||
var/ipfire/langs
|
||||
etc/logrotate.conf
|
||||
etc/rc.d/init.d/firewall
|
||||
etc/rc.d/init.d/unbound
|
||||
etc/rc.d/init.d/networking/red.up/99-geoip-database
|
||||
etc/sysctl.conf
|
||||
srv/web/ipfire/cgi-bin/dns.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/qos.cgi
|
||||
srv/web/ipfire/cgi-bin/vpnmain.cgi
|
||||
usr/lib/firewall/rules.pl
|
||||
usr/sbin/firewall-policy
|
||||
usr/local/bin/xt_geoip_update
|
||||
var/ipfire/backup/bin/backup.pl
|
||||
var/ipfire/qos/bin/makeqosscripts.pl
|
||||
var/ipfire/suricata/ruleset-sources
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
1
config/rootfiles/oldcore/137/filelists/iproute2
Symbolic link
1
config/rootfiles/oldcore/137/filelists/iproute2
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/iproute2
|
||||
1
config/rootfiles/oldcore/137/filelists/ipset
Symbolic link
1
config/rootfiles/oldcore/137/filelists/ipset
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/ipset
|
||||
1
config/rootfiles/oldcore/137/filelists/iptables
Symbolic link
1
config/rootfiles/oldcore/137/filelists/iptables
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/iptables
|
||||
1
config/rootfiles/oldcore/137/filelists/knot
Symbolic link
1
config/rootfiles/oldcore/137/filelists/knot
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/knot
|
||||
1
config/rootfiles/oldcore/137/filelists/libhtp
Symbolic link
1
config/rootfiles/oldcore/137/filelists/libhtp
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/libhtp
|
||||
1
config/rootfiles/oldcore/137/filelists/libnetfilter_queue
Symbolic link
1
config/rootfiles/oldcore/137/filelists/libnetfilter_queue
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/libnetfilter_queue
|
||||
1
config/rootfiles/oldcore/137/filelists/libpcap
Symbolic link
1
config/rootfiles/oldcore/137/filelists/libpcap
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/libpcap
|
||||
1
config/rootfiles/oldcore/137/filelists/libssh
Symbolic link
1
config/rootfiles/oldcore/137/filelists/libssh
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/libssh
|
||||
1
config/rootfiles/oldcore/137/filelists/pcre
Symbolic link
1
config/rootfiles/oldcore/137/filelists/pcre
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/pcre
|
||||
1
config/rootfiles/oldcore/137/filelists/strongswan
Symbolic link
1
config/rootfiles/oldcore/137/filelists/strongswan
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/strongswan
|
||||
1
config/rootfiles/oldcore/137/filelists/suricata
Symbolic link
1
config/rootfiles/oldcore/137/filelists/suricata
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/suricata
|
||||
1
config/rootfiles/oldcore/137/filelists/tzdata
Symbolic link
1
config/rootfiles/oldcore/137/filelists/tzdata
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/tzdata
|
||||
1
config/rootfiles/oldcore/137/filelists/unbound
Symbolic link
1
config/rootfiles/oldcore/137/filelists/unbound
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/unbound
|
||||
1
config/rootfiles/oldcore/137/filelists/wpa_supplicant
Symbolic link
1
config/rootfiles/oldcore/137/filelists/wpa_supplicant
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/wpa_supplicant
|
||||
@@ -24,7 +24,7 @@
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
core=138
|
||||
core=137
|
||||
|
||||
exit_with_error() {
|
||||
# Set last succesfull installed core.
|
||||
@@ -77,7 +77,6 @@ rm -rf /boot/zImage-*-ipfire-*
|
||||
rm -rf /boot/uInit-*-ipfire-*
|
||||
rm -rf /boot/dtb-*-ipfire-*
|
||||
rm -rf /lib/modules
|
||||
rm -f /etc/sysconfig/lm_sensors
|
||||
|
||||
# Remove files
|
||||
|
||||
@@ -86,8 +85,6 @@ rm -f /etc/sysconfig/lm_sensors
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# update dhcpcd.conf
|
||||
|
||||
# update linker config
|
||||
ldconfig
|
||||
|
||||
@@ -95,6 +92,17 @@ ldconfig
|
||||
/usr/local/bin/update-lang-cache
|
||||
|
||||
# Start services
|
||||
/usr/local/bin/ipsecctrl S
|
||||
/etc/init.d/suricata restart
|
||||
/etc/init.d/unbound restart
|
||||
/etc/init.d/collectd restart
|
||||
|
||||
# remove lm_sensor config after collectd was started
|
||||
# to reserch sensors at next boot with updated kernel
|
||||
rm -f /etc/sysconfig/lm_sensors
|
||||
|
||||
# generate new qos script
|
||||
/usr/local/bin/qosctrl generate
|
||||
|
||||
# Search sensors again after reboot into the new kernel
|
||||
rm -f /etc/sysconfig/lm_sensors
|
||||
@@ -30,7 +30,6 @@ etc/logrotate.d/libvirtd
|
||||
etc/logrotate.d/libvirtd.libxl
|
||||
#etc/logrotate.d/libvirtd.lxc
|
||||
etc/logrotate.d/libvirtd.qemu
|
||||
#etc/logrotate.d/libvirtd.uml
|
||||
etc/rc.d/init.d/libvirt-guests
|
||||
etc/rc.d/init.d/libvirtd
|
||||
etc/rc.d/init.d/virtlogd
|
||||
@@ -43,6 +42,7 @@ usr/bin/virt-xml-validate
|
||||
#usr/include/libvirt
|
||||
#usr/include/libvirt/libvirt-admin.h
|
||||
#usr/include/libvirt/libvirt-common.h
|
||||
#usr/include/libvirt/libvirt-domain-checkpoint.h
|
||||
#usr/include/libvirt/libvirt-domain-snapshot.h
|
||||
#usr/include/libvirt/libvirt-domain.h
|
||||
#usr/include/libvirt/libvirt-event.h
|
||||
@@ -62,19 +62,19 @@ usr/bin/virt-xml-validate
|
||||
#usr/lib/libvirt-admin.la
|
||||
#usr/lib/libvirt-admin.so
|
||||
usr/lib/libvirt-admin.so.0
|
||||
usr/lib/libvirt-admin.so.0.4010.0
|
||||
usr/lib/libvirt-admin.so.0.5006.0
|
||||
#usr/lib/libvirt-lxc.la
|
||||
#usr/lib/libvirt-lxc.so
|
||||
usr/lib/libvirt-lxc.so.0
|
||||
usr/lib/libvirt-lxc.so.0.4010.0
|
||||
usr/lib/libvirt-lxc.so.0.5006.0
|
||||
#usr/lib/libvirt-qemu.la
|
||||
#usr/lib/libvirt-qemu.so
|
||||
usr/lib/libvirt-qemu.so.0
|
||||
usr/lib/libvirt-qemu.so.0.4010.0
|
||||
usr/lib/libvirt-qemu.so.0.5006.0
|
||||
#usr/lib/libvirt.la
|
||||
#usr/lib/libvirt.so
|
||||
usr/lib/libvirt.so.0
|
||||
usr/lib/libvirt.so.0.4010.0
|
||||
usr/lib/libvirt.so.0.5006.0
|
||||
#usr/lib/libvirt/connection-driver
|
||||
#usr/lib/libvirt/connection-driver/libvirt_driver_interface.la
|
||||
usr/lib/libvirt/connection-driver/libvirt_driver_interface.so
|
||||
@@ -94,6 +94,8 @@ usr/lib/libvirt/lock-driver/lockd.so
|
||||
#usr/lib/libvirt/storage-backend
|
||||
#usr/lib/libvirt/storage-backend/libvirt_storage_backend_fs.la
|
||||
usr/lib/libvirt/storage-backend/libvirt_storage_backend_fs.so
|
||||
#usr/lib/libvirt/storage-backend/libvirt_storage_backend_logical.la
|
||||
usr/lib/libvirt/storage-backend/libvirt_storage_backend_logical.so
|
||||
#usr/lib/libvirt/storage-file
|
||||
#usr/lib/libvirt/storage-file/libvirt_storage_file_fs.la
|
||||
usr/lib/libvirt/storage-file/libvirt_storage_file_fs.so
|
||||
@@ -120,176 +122,249 @@ usr/sbin/virtlogd
|
||||
#usr/share/augeas/lenses/tests/test_virtlogd.aug
|
||||
#usr/share/augeas/lenses/virtlockd.aug
|
||||
#usr/share/augeas/lenses/virtlogd.aug
|
||||
#usr/share/doc/libvirt-4.10.0
|
||||
#usr/share/doc/libvirt-4.10.0/html
|
||||
#usr/share/doc/libvirt-4.10.0/html/32favicon.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/404.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/acl.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/aclpolkit.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/api.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/api_extension.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/apps.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/architecture.gif
|
||||
#usr/share/doc/libvirt-4.10.0/html/architecture.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/auditlog.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/auth.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/bindings.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/bugs.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/cgroups.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/compiling.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/contact.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/contribute.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/csharp.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/dbus.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/devguide.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/docs.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/downloads.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drivers.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvbhyve.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvesx.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvhyperv.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvlxc.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvnodedev.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvopenvz.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvphyp.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvqemu.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvremote.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvtest.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvuml.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvvbox.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvvirtuozzo.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvvmware.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/drvxen.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/errors.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/firewall.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/LICENSE.md
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-bold-italic.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-bold.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-italic.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-light-italic.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-light.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-mono-bold.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-mono-light.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-mono-regular.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-mono-semibold.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/overpass-regular.woff
|
||||
#usr/share/doc/libvirt-4.10.0/html/fonts/stylesheet.css
|
||||
#usr/share/doc/libvirt-4.10.0/html/format.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatcaps.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatdomain.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatdomaincaps.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatnetwork.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatnode.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatnwfilter.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatsecret.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatsnapshot.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatstorage.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/formatstorageencryption.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/generic.css
|
||||
#usr/share/doc/libvirt-4.10.0/html/goals.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/governance.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/hacking.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/hooks.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/home.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/index.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/left.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-common.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-domain-snapshot.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-domain.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-event.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-host.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-interface.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-network.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-nodedev.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-nwfilter.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-secret.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-storage.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-libvirt-stream.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/libvirt-virterror.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/right.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/html/up.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/hvsupport.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/index.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals/command.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals/eventloop.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals/locking.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals/oomtesting.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/internals/rpc.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/java.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/libvirt-daemon-arch.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/libvirt-driver-arch.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/libvirt-object-model.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/libvirt.css
|
||||
#usr/share/doc/libvirt-4.10.0/html/locking-lockd.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/locking-sanlock.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/locking.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/logging.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-banner-dark-256.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-banner-dark-800.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-banner-dark.svg
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-banner-light-256.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-banner-light-800.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-banner-light.svg
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-base.svg
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-128.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-192.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-256.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-96.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-powered-128.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-powered-192.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-powered-256.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-powered-96.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square-powered.svg
|
||||
#usr/share/doc/libvirt-4.10.0/html/logos/logo-square.svg
|
||||
#usr/share/doc/libvirt-4.10.0/html/main.css
|
||||
#usr/share/doc/libvirt-4.10.0/html/migration-managed-direct.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/migration-managed-p2p.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/migration-native.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/migration-tunnel.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/migration-unmanaged-direct.png
|
||||
#usr/share/doc/libvirt-4.10.0/html/migration.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/mobile.css
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2005.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2006.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2007.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2008.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2009.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2010.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2011.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2012.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2013.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2014.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2015.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news-2016.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/news.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/node.gif
|
||||
#usr/share/doc/libvirt-4.10.0/html/nss.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/pci-hotplug.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/php.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/platforms.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/python.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/remote.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/secureusage.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/securityprocess.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/storage.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/support.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/testapi.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/testsuites.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/testtck.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/todo.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/uri.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/virshcmdref.html
|
||||
#usr/share/doc/libvirt-4.10.0/html/windows.html
|
||||
#usr/share/doc/libvirt
|
||||
#usr/share/doc/libvirt/examples
|
||||
#usr/share/doc/libvirt/examples/c
|
||||
#usr/share/doc/libvirt/examples/c/admin
|
||||
#usr/share/doc/libvirt/examples/c/admin/client_close.c
|
||||
#usr/share/doc/libvirt/examples/c/admin/client_info.c
|
||||
#usr/share/doc/libvirt/examples/c/admin/client_limits.c
|
||||
#usr/share/doc/libvirt/examples/c/admin/list_clients.c
|
||||
#usr/share/doc/libvirt/examples/c/admin/list_servers.c
|
||||
#usr/share/doc/libvirt/examples/c/admin/logging.c
|
||||
#usr/share/doc/libvirt/examples/c/admin/threadpool_params.c
|
||||
#usr/share/doc/libvirt/examples/c/domain
|
||||
#usr/share/doc/libvirt/examples/c/domain/dommigrate.c
|
||||
#usr/share/doc/libvirt/examples/c/domain/domtop.c
|
||||
#usr/share/doc/libvirt/examples/c/domain/info1.c
|
||||
#usr/share/doc/libvirt/examples/c/domain/rename.c
|
||||
#usr/share/doc/libvirt/examples/c/domain/suspend.c
|
||||
#usr/share/doc/libvirt/examples/c/misc
|
||||
#usr/share/doc/libvirt/examples/c/misc/event-test.c
|
||||
#usr/share/doc/libvirt/examples/c/misc/hellolibvirt.c
|
||||
#usr/share/doc/libvirt/examples/c/misc/openauth.c
|
||||
#usr/share/doc/libvirt/examples/polkit
|
||||
#usr/share/doc/libvirt/examples/polkit/libvirt-acl.rules
|
||||
#usr/share/doc/libvirt/examples/sh
|
||||
#usr/share/doc/libvirt/examples/sh/virt-lxc-convert
|
||||
#usr/share/doc/libvirt/examples/systemtap
|
||||
#usr/share/doc/libvirt/examples/systemtap/events.stp
|
||||
#usr/share/doc/libvirt/examples/systemtap/lock-debug.stp
|
||||
#usr/share/doc/libvirt/examples/systemtap/qemu-monitor.stp
|
||||
#usr/share/doc/libvirt/examples/systemtap/rpc-monitor.stp
|
||||
#usr/share/doc/libvirt/examples/xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage
|
||||
#usr/share/doc/libvirt/examples/xml/storage/pool-dir.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/pool-fs.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/pool-logical.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/pool-netfs.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/vol-cow.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/vol-qcow.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/vol-qcow2.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/vol-raw.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/vol-sparse.xml
|
||||
#usr/share/doc/libvirt/examples/xml/storage/vol-vmdk.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test
|
||||
#usr/share/doc/libvirt/examples/xml/test/testdev.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testdomfc4.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testdomfv0.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testnetdef.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testnetpriv.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testnode.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testnodeinline.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testpool.xml
|
||||
#usr/share/doc/libvirt/examples/xml/test/testvol.xml
|
||||
#usr/share/doc/libvirt/html
|
||||
#usr/share/doc/libvirt/html/32favicon.png
|
||||
#usr/share/doc/libvirt/html/404.html
|
||||
#usr/share/doc/libvirt/html/acl.html
|
||||
#usr/share/doc/libvirt/html/aclpolkit.html
|
||||
#usr/share/doc/libvirt/html/api.html
|
||||
#usr/share/doc/libvirt/html/api_extension.html
|
||||
#usr/share/doc/libvirt/html/apps.html
|
||||
#usr/share/doc/libvirt/html/architecture.gif
|
||||
#usr/share/doc/libvirt/html/architecture.html
|
||||
#usr/share/doc/libvirt/html/auditlog.html
|
||||
#usr/share/doc/libvirt/html/auth.html
|
||||
#usr/share/doc/libvirt/html/bindings.html
|
||||
#usr/share/doc/libvirt/html/bugs.html
|
||||
#usr/share/doc/libvirt/html/cgroups.html
|
||||
#usr/share/doc/libvirt/html/compiling.html
|
||||
#usr/share/doc/libvirt/html/contact.html
|
||||
#usr/share/doc/libvirt/html/contribute.html
|
||||
#usr/share/doc/libvirt/html/csharp.html
|
||||
#usr/share/doc/libvirt/html/dbus.html
|
||||
#usr/share/doc/libvirt/html/devguide.html
|
||||
#usr/share/doc/libvirt/html/docs.html
|
||||
#usr/share/doc/libvirt/html/downloads.html
|
||||
#usr/share/doc/libvirt/html/drivers.html
|
||||
#usr/share/doc/libvirt/html/drvbhyve.html
|
||||
#usr/share/doc/libvirt/html/drvesx.html
|
||||
#usr/share/doc/libvirt/html/drvhyperv.html
|
||||
#usr/share/doc/libvirt/html/drvlxc.html
|
||||
#usr/share/doc/libvirt/html/drvnodedev.html
|
||||
#usr/share/doc/libvirt/html/drvopenvz.html
|
||||
#usr/share/doc/libvirt/html/drvphyp.html
|
||||
#usr/share/doc/libvirt/html/drvqemu.html
|
||||
#usr/share/doc/libvirt/html/drvremote.html
|
||||
#usr/share/doc/libvirt/html/drvtest.html
|
||||
#usr/share/doc/libvirt/html/drvvbox.html
|
||||
#usr/share/doc/libvirt/html/drvvirtuozzo.html
|
||||
#usr/share/doc/libvirt/html/drvvmware.html
|
||||
#usr/share/doc/libvirt/html/drvxen.html
|
||||
#usr/share/doc/libvirt/html/errors.html
|
||||
#usr/share/doc/libvirt/html/firewall.html
|
||||
#usr/share/doc/libvirt/html/fonts
|
||||
#usr/share/doc/libvirt/html/fonts/LICENSE.md
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-bold-italic.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-bold.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-italic.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-light-italic.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-light.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-mono-bold.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-mono-light.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-mono-regular.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-mono-semibold.woff
|
||||
#usr/share/doc/libvirt/html/fonts/overpass-regular.woff
|
||||
#usr/share/doc/libvirt/html/fonts/stylesheet.css
|
||||
#usr/share/doc/libvirt/html/format.html
|
||||
#usr/share/doc/libvirt/html/formatcaps.html
|
||||
#usr/share/doc/libvirt/html/formatcheckpoint.html
|
||||
#usr/share/doc/libvirt/html/formatdomain.html
|
||||
#usr/share/doc/libvirt/html/formatdomaincaps.html
|
||||
#usr/share/doc/libvirt/html/formatnetwork.html
|
||||
#usr/share/doc/libvirt/html/formatnetworkport.html
|
||||
#usr/share/doc/libvirt/html/formatnode.html
|
||||
#usr/share/doc/libvirt/html/formatnwfilter.html
|
||||
#usr/share/doc/libvirt/html/formatsecret.html
|
||||
#usr/share/doc/libvirt/html/formatsnapshot.html
|
||||
#usr/share/doc/libvirt/html/formatstorage.html
|
||||
#usr/share/doc/libvirt/html/formatstoragecaps.html
|
||||
#usr/share/doc/libvirt/html/formatstorageencryption.html
|
||||
#usr/share/doc/libvirt/html/generic.css
|
||||
#usr/share/doc/libvirt/html/goals.html
|
||||
#usr/share/doc/libvirt/html/governance.html
|
||||
#usr/share/doc/libvirt/html/hacking.html
|
||||
#usr/share/doc/libvirt/html/hooks.html
|
||||
#usr/share/doc/libvirt/html/html
|
||||
#usr/share/doc/libvirt/html/html/home.png
|
||||
#usr/share/doc/libvirt/html/html/index.html
|
||||
#usr/share/doc/libvirt/html/html/left.png
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-common.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-domain-checkpoint.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-domain-snapshot.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-domain.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-event.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-host.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-interface.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-network.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-nodedev.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-nwfilter.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-secret.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-storage.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-libvirt-stream.html
|
||||
#usr/share/doc/libvirt/html/html/libvirt-virterror.html
|
||||
#usr/share/doc/libvirt/html/html/right.png
|
||||
#usr/share/doc/libvirt/html/html/up.png
|
||||
#usr/share/doc/libvirt/html/hvsupport.html
|
||||
#usr/share/doc/libvirt/html/index.html
|
||||
#usr/share/doc/libvirt/html/internals
|
||||
#usr/share/doc/libvirt/html/internals.html
|
||||
#usr/share/doc/libvirt/html/internals/command.html
|
||||
#usr/share/doc/libvirt/html/internals/eventloop.html
|
||||
#usr/share/doc/libvirt/html/internals/locking.html
|
||||
#usr/share/doc/libvirt/html/internals/oomtesting.html
|
||||
#usr/share/doc/libvirt/html/internals/rpc.html
|
||||
#usr/share/doc/libvirt/html/java.html
|
||||
#usr/share/doc/libvirt/html/js
|
||||
#usr/share/doc/libvirt/html/js/main.js
|
||||
#usr/share/doc/libvirt/html/kbase
|
||||
#usr/share/doc/libvirt/html/kbase.html
|
||||
#usr/share/doc/libvirt/html/kbase/domainstatecapture.html
|
||||
#usr/share/doc/libvirt/html/kbase/launch_security_sev.html
|
||||
#usr/share/doc/libvirt/html/kbase/locking-lockd.html
|
||||
#usr/share/doc/libvirt/html/kbase/locking-sanlock.html
|
||||
#usr/share/doc/libvirt/html/kbase/locking.html
|
||||
#usr/share/doc/libvirt/html/kbase/secureusage.html
|
||||
#usr/share/doc/libvirt/html/libvirt-daemon-arch.png
|
||||
#usr/share/doc/libvirt/html/libvirt-driver-arch.png
|
||||
#usr/share/doc/libvirt/html/libvirt-object-model.png
|
||||
#usr/share/doc/libvirt/html/libvirt.css
|
||||
#usr/share/doc/libvirt/html/logging.html
|
||||
#usr/share/doc/libvirt/html/logos
|
||||
#usr/share/doc/libvirt/html/logos/logo-banner-dark-256.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-banner-dark-800.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-banner-dark.svg
|
||||
#usr/share/doc/libvirt/html/logos/logo-banner-light-256.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-banner-light-800.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-banner-light.svg
|
||||
#usr/share/doc/libvirt/html/logos/logo-base.svg
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-128.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-192.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-256.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-96.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-powered-128.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-powered-192.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-powered-256.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-powered-96.png
|
||||
#usr/share/doc/libvirt/html/logos/logo-square-powered.svg
|
||||
#usr/share/doc/libvirt/html/logos/logo-square.svg
|
||||
#usr/share/doc/libvirt/html/main.css
|
||||
#usr/share/doc/libvirt/html/migration-managed-direct.png
|
||||
#usr/share/doc/libvirt/html/migration-managed-p2p.png
|
||||
#usr/share/doc/libvirt/html/migration-native.png
|
||||
#usr/share/doc/libvirt/html/migration-tunnel.png
|
||||
#usr/share/doc/libvirt/html/migration-unmanaged-direct.png
|
||||
#usr/share/doc/libvirt/html/migration.html
|
||||
#usr/share/doc/libvirt/html/mobile.css
|
||||
#usr/share/doc/libvirt/html/news-2005.html
|
||||
#usr/share/doc/libvirt/html/news-2006.html
|
||||
#usr/share/doc/libvirt/html/news-2007.html
|
||||
#usr/share/doc/libvirt/html/news-2008.html
|
||||
#usr/share/doc/libvirt/html/news-2009.html
|
||||
#usr/share/doc/libvirt/html/news-2010.html
|
||||
#usr/share/doc/libvirt/html/news-2011.html
|
||||
#usr/share/doc/libvirt/html/news-2012.html
|
||||
#usr/share/doc/libvirt/html/news-2013.html
|
||||
#usr/share/doc/libvirt/html/news-2014.html
|
||||
#usr/share/doc/libvirt/html/news-2015.html
|
||||
#usr/share/doc/libvirt/html/news-2016.html
|
||||
#usr/share/doc/libvirt/html/news.html
|
||||
#usr/share/doc/libvirt/html/node.gif
|
||||
#usr/share/doc/libvirt/html/nss.html
|
||||
#usr/share/doc/libvirt/html/pci-hotplug.html
|
||||
#usr/share/doc/libvirt/html/php.html
|
||||
#usr/share/doc/libvirt/html/platforms.html
|
||||
#usr/share/doc/libvirt/html/python.html
|
||||
#usr/share/doc/libvirt/html/remote.html
|
||||
#usr/share/doc/libvirt/html/securityprocess.html
|
||||
#usr/share/doc/libvirt/html/storage.html
|
||||
#usr/share/doc/libvirt/html/support.html
|
||||
#usr/share/doc/libvirt/html/testapi.html
|
||||
#usr/share/doc/libvirt/html/testsuites.html
|
||||
#usr/share/doc/libvirt/html/testtck.html
|
||||
#usr/share/doc/libvirt/html/todo.html
|
||||
#usr/share/doc/libvirt/html/uri.html
|
||||
#usr/share/doc/libvirt/html/virshcmdref.html
|
||||
#usr/share/doc/libvirt/html/windows.html
|
||||
#usr/share/gtk-doc/html/libvirt
|
||||
#usr/share/gtk-doc/html/libvirt/general.html
|
||||
#usr/share/gtk-doc/html/libvirt/home.png
|
||||
#usr/share/gtk-doc/html/libvirt/index.html
|
||||
#usr/share/gtk-doc/html/libvirt/left.png
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-common.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-domain-checkpoint.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-domain-snapshot.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-domain.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-event.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-host.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-interface.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-network.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-nodedev.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-nwfilter.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-secret.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-storage.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-libvirt-stream.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt-virterror.html
|
||||
#usr/share/gtk-doc/html/libvirt/libvirt.devhelp
|
||||
#usr/share/gtk-doc/html/libvirt/right.png
|
||||
@@ -315,8 +390,9 @@ usr/share/libvirt/cpu_map/x86_Broadwell-IBRS.xml
|
||||
usr/share/libvirt/cpu_map/x86_Broadwell-noTSX-IBRS.xml
|
||||
usr/share/libvirt/cpu_map/x86_Broadwell-noTSX.xml
|
||||
usr/share/libvirt/cpu_map/x86_Broadwell.xml
|
||||
usr/share/libvirt/cpu_map/x86_Cascadelake-Server.xml
|
||||
usr/share/libvirt/cpu_map/x86_Conroe.xml
|
||||
usr/share/libvirt/cpu_map/x86_EPYC-IBRS.xml
|
||||
usr/share/libvirt/cpu_map/x86_EPYC-IBPB.xml
|
||||
usr/share/libvirt/cpu_map/x86_EPYC.xml
|
||||
usr/share/libvirt/cpu_map/x86_Haswell-IBRS.xml
|
||||
usr/share/libvirt/cpu_map/x86_Haswell-noTSX-IBRS.xml
|
||||
@@ -365,11 +441,13 @@ usr/share/libvirt/schemas/capability.rng
|
||||
usr/share/libvirt/schemas/cputypes.rng
|
||||
usr/share/libvirt/schemas/domain.rng
|
||||
usr/share/libvirt/schemas/domaincaps.rng
|
||||
usr/share/libvirt/schemas/domaincheckpoint.rng
|
||||
usr/share/libvirt/schemas/domaincommon.rng
|
||||
usr/share/libvirt/schemas/domainsnapshot.rng
|
||||
usr/share/libvirt/schemas/interface.rng
|
||||
usr/share/libvirt/schemas/network.rng
|
||||
usr/share/libvirt/schemas/networkcommon.rng
|
||||
usr/share/libvirt/schemas/networkport.rng
|
||||
usr/share/libvirt/schemas/nodedev.rng
|
||||
usr/share/libvirt/schemas/nwfilter.rng
|
||||
usr/share/libvirt/schemas/nwfilter_params.rng
|
||||
@@ -377,6 +455,7 @@ usr/share/libvirt/schemas/nwfilterbinding.rng
|
||||
usr/share/libvirt/schemas/secret.rng
|
||||
usr/share/libvirt/schemas/storagecommon.rng
|
||||
usr/share/libvirt/schemas/storagepool.rng
|
||||
usr/share/libvirt/schemas/storagepoolcaps.rng
|
||||
usr/share/libvirt/schemas/storagevol.rng
|
||||
#usr/share/libvirt/test-screenshot.png
|
||||
#usr/share/man/man1/virsh.1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#lib/firmware/pcengines
|
||||
#lib/firmware/pcengines/apu
|
||||
lib/firmware/pcengines/apu/apu1_v4.10.0.0.rom
|
||||
lib/firmware/pcengines/apu/apu2_v4.10.0.0.rom
|
||||
lib/firmware/pcengines/apu/apu3_v4.10.0.0.rom
|
||||
lib/firmware/pcengines/apu/apu4_v4.10.0.0.rom
|
||||
lib/firmware/pcengines/apu/apu5_v4.10.0.0.rom
|
||||
lib/firmware/pcengines/apu/apu1_v4.10.0.3.rom
|
||||
lib/firmware/pcengines/apu/apu2_v4.10.0.3.rom
|
||||
lib/firmware/pcengines/apu/apu3_v4.10.0.3.rom
|
||||
lib/firmware/pcengines/apu/apu4_v4.10.0.3.rom
|
||||
lib/firmware/pcengines/apu/apu5_v4.10.0.3.rom
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
lib/udev/rules.d/65-kvm.rules
|
||||
usr/bin/elf2dmp
|
||||
usr/bin/ivshmem-client
|
||||
usr/bin/ivshmem-server
|
||||
usr/bin/qemu
|
||||
usr/bin/qemu-arm
|
||||
usr/bin/qemu-edid
|
||||
usr/bin/qemu-ga
|
||||
usr/bin/qemu-i386
|
||||
usr/bin/qemu-img
|
||||
@@ -14,27 +16,53 @@ usr/bin/qemu-system-i386
|
||||
usr/bin/qemu-system-x86_64
|
||||
usr/bin/qemu-x86_64
|
||||
usr/libexec/qemu-bridge-helper
|
||||
#usr/share/doc/qemu
|
||||
#usr/share/doc/qemu/qemu-doc.html
|
||||
#usr/share/doc/qemu/qemu-doc.txt
|
||||
#usr/share/doc/qemu/qemu-ga-ref.html
|
||||
#usr/share/doc/qemu/qemu-ga-ref.txt
|
||||
#usr/share/doc/qemu/qemu-qmp-ref.html
|
||||
#usr/share/doc/qemu/qemu-qmp-ref.txt
|
||||
#usr/share/man/man1/qemu-img.1
|
||||
#usr/share/man/man1/qemu.1
|
||||
#usr/share/man/man7/qemu-block-drivers.7
|
||||
#usr/share/man/man7/qemu-ga-ref.7
|
||||
#usr/share/man/man7/qemu-qmp-ref.7
|
||||
#usr/share/man/man8/qemu-ga.8
|
||||
#usr/share/man/man8/qemu-nbd.8
|
||||
#usr/share/applications/qemu.desktop
|
||||
#usr/share/icons
|
||||
#usr/share/icons/hicolor
|
||||
#usr/share/icons/hicolor/128x128
|
||||
#usr/share/icons/hicolor/128x128/apps
|
||||
#usr/share/icons/hicolor/128x128/apps/qemu.png
|
||||
#usr/share/icons/hicolor/16x16
|
||||
#usr/share/icons/hicolor/16x16/apps
|
||||
#usr/share/icons/hicolor/16x16/apps/qemu.png
|
||||
#usr/share/icons/hicolor/24x24
|
||||
#usr/share/icons/hicolor/24x24/apps
|
||||
#usr/share/icons/hicolor/24x24/apps/qemu.png
|
||||
#usr/share/icons/hicolor/256x256
|
||||
#usr/share/icons/hicolor/256x256/apps
|
||||
#usr/share/icons/hicolor/256x256/apps/qemu.png
|
||||
#usr/share/icons/hicolor/32x32
|
||||
#usr/share/icons/hicolor/32x32/apps
|
||||
#usr/share/icons/hicolor/32x32/apps/qemu.bmp
|
||||
#usr/share/icons/hicolor/32x32/apps/qemu.png
|
||||
#usr/share/icons/hicolor/48x48
|
||||
#usr/share/icons/hicolor/48x48/apps
|
||||
#usr/share/icons/hicolor/48x48/apps/qemu.png
|
||||
#usr/share/icons/hicolor/512x512
|
||||
#usr/share/icons/hicolor/512x512/apps
|
||||
#usr/share/icons/hicolor/512x512/apps/qemu.png
|
||||
#usr/share/icons/hicolor/64x64
|
||||
#usr/share/icons/hicolor/64x64/apps
|
||||
#usr/share/icons/hicolor/64x64/apps/qemu.png
|
||||
#usr/share/icons/hicolor/scalable
|
||||
#usr/share/icons/hicolor/scalable/apps
|
||||
#usr/share/icons/hicolor/scalable/apps/qemu.svg
|
||||
#usr/share/qemu
|
||||
usr/share/qemu/QEMU,cgthree.bin
|
||||
usr/share/qemu/QEMU,tcx.bin
|
||||
usr/share/qemu/acpi-dsdt.aml
|
||||
usr/share/qemu/bamboo.dtb
|
||||
usr/share/qemu/bios-256k.bin
|
||||
usr/share/qemu/bios.bin
|
||||
usr/share/qemu/canyonlands.dtb
|
||||
usr/share/qemu/edk2-aarch64-code.fd
|
||||
usr/share/qemu/edk2-arm-code.fd
|
||||
usr/share/qemu/edk2-arm-vars.fd
|
||||
usr/share/qemu/edk2-i386-code.fd
|
||||
usr/share/qemu/edk2-i386-secure-code.fd
|
||||
usr/share/qemu/edk2-i386-vars.fd
|
||||
usr/share/qemu/edk2-licenses.txt
|
||||
usr/share/qemu/edk2-x86_64-code.fd
|
||||
usr/share/qemu/edk2-x86_64-secure-code.fd
|
||||
usr/share/qemu/efi-e1000.rom
|
||||
usr/share/qemu/efi-e1000e.rom
|
||||
usr/share/qemu/efi-eepro100.rom
|
||||
@@ -43,10 +71,17 @@ usr/share/qemu/efi-pcnet.rom
|
||||
usr/share/qemu/efi-rtl8139.rom
|
||||
usr/share/qemu/efi-virtio.rom
|
||||
usr/share/qemu/efi-vmxnet3.rom
|
||||
usr/share/qemu/firmware
|
||||
usr/share/qemu/firmware/50-edk2-i386-secure.json
|
||||
usr/share/qemu/firmware/50-edk2-x86_64-secure.json
|
||||
usr/share/qemu/firmware/60-edk2-aarch64.json
|
||||
usr/share/qemu/firmware/60-edk2-arm.json
|
||||
usr/share/qemu/firmware/60-edk2-i386.json
|
||||
usr/share/qemu/firmware/60-edk2-x86_64.json
|
||||
usr/share/qemu/hppa-firmware.img
|
||||
usr/share/qemu/keymaps
|
||||
usr/share/qemu/keymaps/ar
|
||||
usr/share/qemu/keymaps/bepo
|
||||
usr/share/qemu/keymaps/common
|
||||
usr/share/qemu/keymaps/cz
|
||||
usr/share/qemu/keymaps/da
|
||||
usr/share/qemu/keymaps/de
|
||||
@@ -69,9 +104,7 @@ usr/share/qemu/keymaps/ja
|
||||
usr/share/qemu/keymaps/lt
|
||||
usr/share/qemu/keymaps/lv
|
||||
usr/share/qemu/keymaps/mk
|
||||
usr/share/qemu/keymaps/modifiers
|
||||
usr/share/qemu/keymaps/nl
|
||||
usr/share/qemu/keymaps/nl-be
|
||||
usr/share/qemu/keymaps/no
|
||||
usr/share/qemu/keymaps/pl
|
||||
usr/share/qemu/keymaps/pt
|
||||
@@ -88,18 +121,21 @@ usr/share/qemu/multiboot.bin
|
||||
usr/share/qemu/openbios-ppc
|
||||
usr/share/qemu/openbios-sparc32
|
||||
usr/share/qemu/openbios-sparc64
|
||||
usr/share/qemu/opensbi-riscv32-virt-fw_jump.bin
|
||||
usr/share/qemu/opensbi-riscv64-sifive_u-fw_jump.bin
|
||||
usr/share/qemu/opensbi-riscv64-virt-fw_jump.bin
|
||||
usr/share/qemu/palcode-clipper
|
||||
usr/share/qemu/petalogix-ml605.dtb
|
||||
usr/share/qemu/petalogix-s3adsp1800.dtb
|
||||
usr/share/qemu/ppc_rom.bin
|
||||
usr/share/qemu/pvh.bin
|
||||
usr/share/qemu/pxe-e1000.rom
|
||||
usr/share/qemu/pxe-eepro100.rom
|
||||
usr/share/qemu/pxe-ne2k_pci.rom
|
||||
usr/share/qemu/pxe-pcnet.rom
|
||||
usr/share/qemu/pxe-rtl8139.rom
|
||||
usr/share/qemu/pxe-virtio.rom
|
||||
usr/share/qemu/qemu-icon.bmp
|
||||
usr/share/qemu/qemu_logo_no_text.svg
|
||||
usr/share/qemu/qemu-nsis.bmp
|
||||
usr/share/qemu/qemu_vga.ndrv
|
||||
usr/share/qemu/s390-ccw.img
|
||||
usr/share/qemu/s390-netboot.img
|
||||
@@ -108,9 +144,13 @@ usr/share/qemu/skiboot.lid
|
||||
usr/share/qemu/slof.bin
|
||||
usr/share/qemu/spapr-rtas.bin
|
||||
usr/share/qemu/trace-events-all
|
||||
usr/share/qemu/u-boot-sam460-20100605.bin
|
||||
usr/share/qemu/u-boot.e500
|
||||
usr/share/qemu/vgabios-ati.bin
|
||||
usr/share/qemu/vgabios-bochs-display.bin
|
||||
usr/share/qemu/vgabios-cirrus.bin
|
||||
usr/share/qemu/vgabios-qxl.bin
|
||||
usr/share/qemu/vgabios-ramfb.bin
|
||||
usr/share/qemu/vgabios-stdvga.bin
|
||||
usr/share/qemu/vgabios-virtio.bin
|
||||
usr/share/qemu/vgabios-vmware.bin
|
||||
|
||||
@@ -253,7 +253,17 @@ if (-f $IDS::rulestarball) {
|
||||
&IDS::set_ownership("$IDS::homenet_file");
|
||||
|
||||
#
|
||||
## Step 9: Setup automatic ruleset updates.
|
||||
## Step 9: Generate file for the DNS servers.
|
||||
#
|
||||
|
||||
# Call subfunction to generate the file.
|
||||
&IDS::generate_dns_servers_file();
|
||||
|
||||
# Set correct ownership for the dns_servers_file.
|
||||
&IDS::set_ownership("$IDS::dns_servers_file");
|
||||
|
||||
#
|
||||
## Step 10: Setup automatic ruleset updates.
|
||||
#
|
||||
|
||||
# Check if a ruleset is configured.
|
||||
@@ -263,7 +273,7 @@ if($rulessettings{"RULES"}) {
|
||||
}
|
||||
|
||||
#
|
||||
## Step 10: Grab used ruleset files from snort config file and convert
|
||||
## Step 11: Grab used ruleset files from snort config file and convert
|
||||
## them into the new format.
|
||||
#
|
||||
|
||||
@@ -309,7 +319,7 @@ close(SNORTCONF);
|
||||
&IDS::write_used_rulefiles_file(@enabled_rule_files);
|
||||
|
||||
#
|
||||
## Step 11: Start the IDS if enabled.
|
||||
## Step 12: Start the IDS if enabled.
|
||||
#
|
||||
|
||||
# Check if the IDS should be started.
|
||||
|
||||
@@ -11,12 +11,14 @@ vars:
|
||||
# Include HOME_NET declaration from external file.
|
||||
include: /var/ipfire/suricata/suricata-homenet.yaml
|
||||
|
||||
# Include DNS_SERVERS declaration from external file.
|
||||
include: /var/ipfire/suricata/suricata-dns-servers.yaml
|
||||
|
||||
EXTERNAL_NET: "any"
|
||||
|
||||
HTTP_SERVERS: "$HOME_NET"
|
||||
SMTP_SERVERS: "$HOME_NET"
|
||||
SQL_SERVERS: "$HOME_NET"
|
||||
DNS_SERVERS: "$HOME_NET"
|
||||
TELNET_SERVERS: "$HOME_NET"
|
||||
AIM_SERVERS: "$EXTERNAL_NET"
|
||||
DC_SERVERS: "$HOME_NET"
|
||||
|
||||
@@ -514,6 +514,25 @@ END
|
||||
}
|
||||
}
|
||||
|
||||
sub cleanup_expired_coupons
|
||||
{
|
||||
my $acttime=time();
|
||||
&General::readhasharray($clients, \%clientshash) if (-e $clients);
|
||||
foreach my $key (keys %clientshash) {
|
||||
|
||||
#calculate endtime from clientshash
|
||||
my $endtime;
|
||||
if ($clientshash{$key}[3] > '0'){
|
||||
$endtime = $clientshash{$key}[2]+$clientshash{$key}[3];
|
||||
if ($acttime > $endtime) {
|
||||
delete $clientshash{$key};
|
||||
}
|
||||
}
|
||||
}
|
||||
#write back hash
|
||||
&General::writehasharray("$clients", \%clientshash);
|
||||
}
|
||||
|
||||
sub show_coupons() {
|
||||
&General::readhasharray($coupons, \%couponhash) if (-e $coupons);
|
||||
|
||||
@@ -601,9 +620,9 @@ sub show_clients() {
|
||||
<th align='center' width='5%'>$Lang::tr{'delete'}</th>
|
||||
</tr>
|
||||
END
|
||||
|
||||
&cleanup_expired_coupons();
|
||||
&General::readhasharray($clients, \%clientshash) if (-e $clients);
|
||||
foreach my $key (keys %clientshash) {
|
||||
foreach my $key (sort {$clientshash{$a}[2] <=> $clientshash{$b}[2]} keys %clientshash) {
|
||||
#calculate time from clientshash (starttime)
|
||||
my $starttime = sub{sprintf '%02d.%02d.%04d %02d:%02d', $_[3], $_[4]+1, $_[5]+1900, $_[2], $_[1] }->(localtime($clientshash{$key}[2]));
|
||||
|
||||
|
||||
@@ -76,15 +76,15 @@ Alf Høgemark,
|
||||
Ben Schweikert,
|
||||
Peter Pfeiffer,
|
||||
Daniel Glanzmann,
|
||||
Heiner Schmeling,
|
||||
Daniel Weismüller,
|
||||
Heiner Schmeling,
|
||||
Timo Eissler,
|
||||
Jan Lentfer,
|
||||
Marcus Scholz,
|
||||
Ersan Yildirim,
|
||||
Stephan Feddersen,
|
||||
Joern-Ingo Weigert,
|
||||
Alexander Koch,
|
||||
Stephan Feddersen,
|
||||
Wolfgang Apolinarski,
|
||||
Alfred Haas,
|
||||
Lars Schuhmacher,
|
||||
@@ -100,6 +100,7 @@ Alex Koch,
|
||||
Dominik Hassler,
|
||||
Larsen,
|
||||
Gabriel Rolland,
|
||||
Tim FitzGeorge,
|
||||
Anton D. Seliverstov,
|
||||
Bernhard Bittner,
|
||||
David Kleuker,
|
||||
@@ -109,7 +110,6 @@ Jorrit de Jonge,
|
||||
Jörn-Ingo Weigert,
|
||||
Przemek Zdroik,
|
||||
Ramax Lo,
|
||||
Tim FitzGeorge,
|
||||
Alexander Rudolf Gruber,
|
||||
Andrew Bellows,
|
||||
Axel Gembe,
|
||||
|
||||
@@ -78,9 +78,9 @@ if ($cgiparams{'ACTION'} eq "$Lang::tr{'save'}")
|
||||
# Beep on ip-up or ip-down. Default is ON.
|
||||
if ($cgiparams{'PPPUPDOWNBEEP'} ne 'on') {
|
||||
$cgiparams{'PPPUPDOWNBEEP'} = 'off';
|
||||
system ('/usr/bin/touch', "${General::swroot}/ppp/nobeeps");
|
||||
system ('/usr/bin/touch', "${General::swroot}/red/nobeeps");
|
||||
} else {
|
||||
unlink "${General::swroot}/ppp/nobeeps";
|
||||
unlink "${General::swroot}/red/nobeeps";
|
||||
}
|
||||
|
||||
# write cgi vars to the file.
|
||||
|
||||
@@ -601,6 +601,9 @@ if ($cgiparams{'RULESET'} eq $Lang::tr{'save'}) {
|
||||
# Generate file to store the home net.
|
||||
&IDS::generate_home_net_file();
|
||||
|
||||
# Generate file to the store the DNS servers.
|
||||
&IDS::generate_dns_servers_file();
|
||||
|
||||
# Write the modify sid's file and pass the taken ruleaction.
|
||||
&IDS::write_modify_sids_file();
|
||||
|
||||
|
||||
@@ -81,19 +81,10 @@ if ( -f $mailfile){
|
||||
|
||||
#ACTIONS
|
||||
if ($cgiparams{'ACTION'} eq "$Lang::tr{'save'}"){ #SaveButton on configsite
|
||||
#Check fields
|
||||
if ($cgiparams{'USEMAIL'} eq 'on'){
|
||||
$errormessage=&checkmailsettings;
|
||||
}else{
|
||||
$cgiparams{'txt_mailserver'}='';
|
||||
$cgiparams{'txt_mailport'}='';
|
||||
$cgiparams{'txt_mailuser'}='';
|
||||
$cgiparams{'txt_mailpass'}='';
|
||||
$cgiparams{'mail_tls'}='';
|
||||
$cgiparams{'txt_mailsender'}='';
|
||||
$cgiparams{'txt_recipient'}='';
|
||||
}
|
||||
if(!$errormessage){
|
||||
# Check fields
|
||||
$errormessage = &checkmailsettings();
|
||||
|
||||
if (!$errormessage) {
|
||||
#clear hashes
|
||||
%auth=();
|
||||
%dma=();
|
||||
@@ -269,21 +260,21 @@ sub checkmailsettings {
|
||||
#Check if mailserver is an ip address or a domain
|
||||
if ($cgiparams{'txt_mailserver'} =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/){
|
||||
if (! &General::validip($cgiparams{'txt_mailserver'})){
|
||||
$errormessage.="$Lang::tr{'email invalid mailip'} $cgiparams{'txt_mailserver'}<br>";
|
||||
$errormessage .= $Lang::tr{'email invalid mailip'} . "<br>";
|
||||
}
|
||||
}elsif(! &General::validfqdn($cgiparams{'txt_mailserver'})){
|
||||
$errormessage.="$Lang::tr{'email invalid mailfqdn'} $cgiparams{'txt_mailserver'}<br>";
|
||||
$errormessage .= $Lang::tr{'email invalid mailfqdn'} . "<br>";
|
||||
}
|
||||
#Check valid mailserverport
|
||||
if($cgiparams{'txt_mailport'} < 1 || $cgiparams{'txt_mailport'} > 65535){
|
||||
$errormessage.="$Lang::tr{'email invalid mailport'} $cgiparams{'txt_mailport'}<br>";
|
||||
$errormessage .= $Lang::tr{'email invalid mailport'} . "<br>";
|
||||
}
|
||||
#Check valid sender
|
||||
if(! $cgiparams{'txt_mailsender'}){
|
||||
$errormessage.="$Lang::tr{'email empty field'} $Lang::tr{'email mailsender'}<br>";
|
||||
$errormessage .= $Lang::tr{'email empty field'} . "<br>";
|
||||
}else{
|
||||
if (! &General::validemail($cgiparams{'txt_mailsender'})){
|
||||
$errormessage.="<br>$Lang::tr{'email invalid'} $Lang::tr{'email mailsender'}<br>";
|
||||
$errormessage .= "$Lang::tr{'email invalid'} $Lang::tr{'email mailsender'}<br>";
|
||||
}
|
||||
}
|
||||
return $errormessage;
|
||||
|
||||
@@ -355,10 +355,10 @@ sub writeserverconf {
|
||||
print CONF "push \"dhcp-option WINS $sovpnsettings{DHCP_WINS}\"\n";
|
||||
}
|
||||
|
||||
if ($sovpnsettings{DHCP_WINS} eq '') {
|
||||
if ($sovpnsettings{MAX_CLIENTS} eq '') {
|
||||
print CONF "max-clients 100\n";
|
||||
}
|
||||
if ($sovpnsettings{DHCP_WINS} ne '') {
|
||||
if ($sovpnsettings{MAX_CLIENTS} ne '') {
|
||||
print CONF "max-clients $sovpnsettings{MAX_CLIENTS}\n";
|
||||
}
|
||||
print CONF "tls-verify /usr/lib/openvpn/verify\n";
|
||||
@@ -785,7 +785,7 @@ if ($cgiparams{'ACTION'} eq $Lang::tr{'save-adv-options'}) {
|
||||
$vpnsettings{'MAX_CLIENTS'} = $cgiparams{'MAX_CLIENTS'};
|
||||
$vpnsettings{'REDIRECT_GW_DEF1'} = $cgiparams{'REDIRECT_GW_DEF1'};
|
||||
$vpnsettings{'CLIENT2CLIENT'} = $cgiparams{'CLIENT2CLIENT'};
|
||||
$vpnsettings{'COMPLZO'} = $cgiparams{'DCOMPLZO'};
|
||||
$vpnsettings{'DCOMPLZO'} = $cgiparams{'DCOMPLZO'};
|
||||
$vpnsettings{'ADDITIONAL_CONFIGS'} = $cgiparams{'ADDITIONAL_CONFIGS'};
|
||||
$vpnsettings{'DHCP_DOMAIN'} = $cgiparams{'DHCP_DOMAIN'};
|
||||
$vpnsettings{'DHCP_DNS'} = $cgiparams{'DHCP_DNS'};
|
||||
|
||||
10
lfs/bash
10
lfs/bash
@@ -1,7 +1,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 4.3
|
||||
VER = 5.0
|
||||
|
||||
THISAPP = bash-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -53,7 +53,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 81348932d5da294953e15d4814c74dd1
|
||||
$(DL_FILE)_MD5 = 2b44b47b905be16f45709648f671820b
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -87,8 +87,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
sed -e "s/filename, RTLD_LAZY/filename, RTLD_NOW/" \
|
||||
-i $(DIR_APP)/builtins/enable.def
|
||||
|
||||
for i in $$(seq 1 30); do \
|
||||
cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/bash/bash43-$$(printf "%03d" "$${i}") || exit 1; \
|
||||
for i in $$(seq 1 11); do \
|
||||
cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/bash/bash50-$$(printf "%03d" "$${i}") || exit 1; \
|
||||
done
|
||||
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/bash-4.0-paths-1.patch
|
||||
|
||||
4
lfs/bind
4
lfs/bind
@@ -25,7 +25,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 9.11.12
|
||||
VER = 9.11.13
|
||||
|
||||
THISAPP = bind-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -43,7 +43,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = e6a55dcacc852bad9c5970c405383ea0
|
||||
$(DL_FILE)_MD5 = 17de0d024ab1eac377f1c2854dc25057
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
2
lfs/bird
2
lfs/bird
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = bird
|
||||
PAK_VER = 5
|
||||
PAK_VER = 6
|
||||
|
||||
DEPS = ""
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 20190730
|
||||
VER = 20191128
|
||||
|
||||
THISAPP = ca-certificates
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -70,6 +70,9 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/calamaris/01_calamaris_cant_use_defined_hash.patch
|
||||
|
||||
cd $(DIR_APP) && cp -f calamaris $(DIR_SRC)/config/calamaris/mkreport \
|
||||
/var/ipfire/proxy/calamaris/bin/
|
||||
chmod 755 /var/ipfire/proxy/calamaris/bin/{calamaris,mkreport}
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 0.102.0
|
||||
VER = 0.102.1
|
||||
|
||||
THISAPP = clamav-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = clamav
|
||||
PAK_VER = 47
|
||||
PAK_VER = 48
|
||||
|
||||
DEPS = ""
|
||||
|
||||
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 51e1dff512350284b4b11c3dc2d00da0
|
||||
$(DL_FILE)_MD5 = 3d5f5f10a1bea212823050286c8c5b96
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
6
lfs/cpio
6
lfs/cpio
@@ -1,7 +1,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.12
|
||||
VER = 2.13
|
||||
|
||||
THISAPP = cpio-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = fc207561a86b63862eea4b8300313e86
|
||||
$(DL_FILE)_MD5 = 389c5452d667c23b5eceb206f5000810
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
8
lfs/ddns
8
lfs/ddns
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 011
|
||||
VER = 012
|
||||
|
||||
THISAPP = ddns-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.xz
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = f0399ba5bad3272f32e539c45cd1abe9
|
||||
$(DL_FILE)_MD5 = 00e70e8bf619148e14b6f6836314bbb7
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -71,6 +71,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
|
||||
|
||||
# Add upstream patch for fixing noip.com
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/ddns-012-noip-rename-provider.patch
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/ddns-012-noip-fix-handle-name.patch
|
||||
|
||||
cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh
|
||||
cd $(DIR_APP) && ./configure \
|
||||
--prefix=/usr \
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -77,9 +77,9 @@ else
|
||||
endif
|
||||
|
||||
# /boot: 128MB - OFFSET
|
||||
# / : 1200 MB
|
||||
# / : 1300 MB
|
||||
S_BOOT := $(shell echo $$(( 262144 - $(S_OFFSET) )))
|
||||
S_ROOT := 2476032
|
||||
S_ROOT := 2672640
|
||||
|
||||
ifeq "$(EFI)" "1"
|
||||
S_EFI = 65536 # 32 MB
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 20191112
|
||||
VER = 20191115
|
||||
|
||||
THISAPP = Intel-Linux-Processor-Microcode-Data-Files-microcode-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = b215c5a8fd438afd867d8a42d01e27f6
|
||||
$(DL_FILE)_MD5 = 49cc3595934772b54b6218f8dbe64a94
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
|
||||
# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 3.3.1
|
||||
VER = 3.4.0
|
||||
|
||||
THISAPP = libarchive-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = d2af45480aa5b0db5b5f3919cd0ea65e
|
||||
$(DL_FILE)_MD5 = 6046396255bd7cf6d0f6603a9bda39ac
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user