Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next

This commit is contained in:
Stefan Schantl
2022-06-06 09:35:28 +02:00
132 changed files with 5955 additions and 5021 deletions

View File

@@ -93,7 +93,7 @@ if ( -d "/var/ipfire/langs/${language}/" ) {
### Initialize user manual
my %manualpages = ();
&General::readhash("${General::swroot}/main/manualpages", \%manualpages);
&_read_manualpage_hash("${General::swroot}/main/manualpages");
### Load selected language and theme functions
require "${swroot}/langs/en.pl";
@@ -558,20 +558,43 @@ sub colorize {
}
}
# Get user manual URL for the specified configuration page, returns empty if no entry is configured
# Get user manual URL for a configuration page inside the "/cgi-bin/"
# (reads current page from the environment variables unless defined)
# Returns empty if no URL is available
sub get_manualpage_url() {
my ($cgi_page) = @_;
my ($cgifile) = @_;
$cgifile //= substr($ENV{'SCRIPT_NAME'}, 9); # remove fixed "/cgi-bin/" path
# Ensure base url is configured
return unless($manualpages{'BASE_URL'});
# Return URL
if($cgi_page && defined($manualpages{$cgi_page})) {
return "$manualpages{'BASE_URL'}/$manualpages{$cgi_page}";
if($cgifile && defined($manualpages{$cgifile})) {
return "$manualpages{'BASE_URL'}/$manualpages{$cgifile}";
}
# No manual page configured, return nothing
return;
}
# Private function to load a hash of configured user manual pages from file
# (run check_manualpages.pl to make sure the file is correct)
sub _read_manualpage_hash() {
my ($filename) = @_;
open(my $file, "<", $filename) or return; # Fail silent
while(my $line = <$file>) {
chomp($line);
next if(substr($line, 0, 1) eq '#'); # Skip comments
next if(index($line, '=', 1) == -1); # Skip incomplete lines
my($left, $value) = split(/=/, $line, 2);
if($left =~ /^([[:alnum:]\/._-]+)$/) {
my $key = $1;
$manualpages{$key} = $value;
}
}
close($file);
}
1; # End of package "Header"

View File

@@ -1,88 +1,88 @@
# Assign manual page URL path to CGI file ([cgi basename]=[path/to/page])
# Assign manual page URL path to CGI file ([cgi file]=[path/to/page])
# The CGI files are referenced relative to the "/cgi-bin/" path
# Base URL (without trailing slash)
# Fixed base URL (without trailing slash)
BASE_URL=https://wiki.ipfire.org
index=configuration/system/startpage
# System menu
index=configuration/system/startpage
mail=configuration/system/mail_service
remote=configuration/system/ssh
backup=configuration/system/backup
gui=configuration/system/userinterface
fireinfo=fireinfo
vulnerabilities=configuration/system/vulnerabilities
shutdown=configuration/system/shutdown
credits=configuration/system/credits
index.cgi=configuration/system/startpage
mail.cgi=configuration/system/mail_service
remote.cgi=configuration/system/ssh
backup.cgi=configuration/system/backup
gui.cgi=configuration/system/userinterface
fireinfo.cgi=fireinfo
vulnerabilities.cgi=configuration/system/vulnerabilities
shutdown.cgi=configuration/system/shutdown
credits.cgi=configuration/system/credits
# Status menu
system=configuration/status/system
memory=configuration/status/memory
services=configuration/status/services
media=configuration/status/drives
netexternal=configuration/status/network_ext
netinternal=configuration/status/network_int
netother=configuration/status/network_int
netovpnrw=configuration/status/network_ovpnrw
#netovpnsrv=
wio=addons/wio
hardwaregraphs=configuration/status/hardware_diagrams
entropy=configuration/status/entropy
connections=configuration/status/connections
traffic=configuration/status/nettraffic
#mdstat=
system.cgi=configuration/status/system
memory.cgi=configuration/status/memory
services.cgi=configuration/status/services
media.cgi=configuration/status/drives
netexternal.cgi=configuration/status/network_ext
netinternal.cgi=configuration/status/network_int
netother.cgi=configuration/status/network_int
netovpnrw.cgi=configuration/status/network_ovpnrw
#netovpnsrv.cgi=
wio.cgi=addons/wio
hardwaregraphs.cgi=configuration/status/hardware_diagrams
entropy.cgi=configuration/status/entropy
connections.cgi=configuration/status/connections
traffic.cgi=configuration/status/nettraffic
#mdstat.cgi=
# Network menu
zoneconf=configuration/network/zoneconf
dns=dns
proxy=configuration/network/proxy
urlfilter=configuration/network/proxy/url-filter
#updatexlrator=configuration/network/proxy/update_accelerator
dhcp=configuration/network/dhcp
captive=configuration/network/captive
connscheduler=configuration/network/connectionscheduler
hosts=configuration/network/hosts
dnsforward=configuration/network/dnsforward
routing=configuration/network/static
mac=configuration/network/mac-address
wakeonlan=configuration/network/wake-on-lan
zoneconf.cgi=configuration/network/zoneconf
dns.cgi=dns
proxy.cgi=configuration/network/proxy
urlfilter.cgi=configuration/network/proxy/url-filter
#updatexlrator.cgi=configuration/network/proxy/update_accelerator
dhcp.cgi=configuration/network/dhcp
captive.cgi=configuration/network/captive
connscheduler.cgi=configuration/network/connectionscheduler
hosts.cgi=configuration/network/hosts
dnsforward.cgi=configuration/network/dnsforward
routing.cgi=configuration/network/static
mac.cgi=configuration/network/mac-address
wakeonlan.cgi=configuration/network/wake-on-lan
# Services menu
vpnmain=configuration/services/ipsec
ovpnmain=configuration/services/openvpn
ddns=configuration/services/dyndns
time=configuration/services/ntp
qos=configuration/services/qos
guardian=addons/guardian
extrahd=configuration/services/extrahd
vpnmain.cgi=configuration/services/ipsec
ovpnmain.cgi=configuration/services/openvpn
ddns.cgi=configuration/services/dyndns
time.cgi=configuration/services/ntp
qos.cgi=configuration/services/qos
guardian.cgi=addons/guardian
extrahd.cgi=configuration/services/extrahd
# Firewall menu
firewall=configuration/firewall
fwhosts=configuration/firewall/fwgroups
optionsfw=configuration/firewall/options
ids=configuration/firewall/ips
location-block=configuration/firewall/geoip-block
wireless=configuration/firewall/accesstoblue
iptables=configuration/firewall/iptables
firewall.cgi=configuration/firewall
fwhosts.cgi=configuration/firewall/fwgroups
optionsfw.cgi=configuration/firewall/options
ids.cgi=configuration/firewall/ips
location-block.cgi=configuration/firewall/geoip-block
wireless.cgi=configuration/firewall/accesstoblue
iptables.cgi=configuration/firewall/iptables
# IPfire menu
pakfire=configuration/ipfire/pakfire
wlanap=addons/wireless
tor=addons/tor
mpfire=addons/mpfire
samba=addons/samba
pakfire.cgi=configuration/ipfire/pakfire
wlanap.cgi=addons/wireless
tor.cgi=addons/tor
mpfire.cgi=addons/mpfire
samba.cgi=addons/samba
# Logs menu
summary=configuration/logs/summary
config=configuration/logs/logsettings
proxylog=configuration/logs/proxy
calamaris=configuration/logs/proxyreports
accounting=addons/squid-accounting
firewalllog=configuration/logs/firewall
firewalllogip=configuration/logs/firewall-ip
firewalllogport=configuration/logs/firewall-port
firewalllogcountry=configuration/logs/firewall-country
ids=configuration/logs/ips
#ovpnclients=
urlfilter=configuration/logs/url-filter
log=configuration/logs/system
logs.cgi/summary.dat=configuration/logs/summary
logs.cgi/config.dat=configuration/logs/logsettings
logs.cgi/proxylog.dat=configuration/logs/proxy
logs.cgi/calamaris.dat=configuration/logs/proxyreports
logs.cgi/accounting.dat=addons/squid-accounting
logs.cgi/firewalllog.dat=configuration/logs/firewall
logs.cgi/firewalllogip.dat=configuration/logs/firewall-ip
logs.cgi/firewalllogport.dat=configuration/logs/firewall-port
logs.cgi/firewalllogcountry.dat=configuration/logs/firewall-country
logs.cgi/ids.dat=configuration/logs/ips
#logs.cgi/ovpnclients.dat=
logs.cgi/urlfilter.dat=configuration/logs/url-filter
logs.cgi/log.dat=configuration/logs/system

View File

@@ -1,6 +1,6 @@
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_CMDLINE_LINUX="panic=10"
GRUB_CMDLINE_LINUX="rd.auto panic=10"
GRUB_DISABLE_RECOVERY="true"
GRUB_BACKGROUND="/boot/grub/splash.png"

File diff suppressed because it is too large Load Diff

View File

@@ -99,6 +99,7 @@ usr/local/bin/ipsec-interfaces
usr/local/bin/makegraphs
usr/local/bin/qosd
usr/local/bin/readhash
usr/local/bin/repair-mdraid
usr/local/bin/run-parts
usr/local/bin/scanhd
usr/local/bin/settime

File diff suppressed because it is too large Load Diff

View File

@@ -97,6 +97,7 @@ usr/local/bin/ipsec-interfaces
usr/local/bin/makegraphs
usr/local/bin/qosd
usr/local/bin/readhash
usr/local/bin/repair-mdraid
usr/local/bin/run-parts
usr/local/bin/scanhd
usr/local/bin/settime

View File

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

View File

@@ -4,9 +4,6 @@
#usr/bin/gdbserver
#usr/include/gdb
#usr/include/gdb/jit-reader.h
#usr/include/sim
#usr/include/sim/callback.h
#usr/include/sim/sim.h
#usr/lib/libinproctrace.so
#usr/share/gdb
#usr/share/gdb/python
@@ -34,6 +31,7 @@
#usr/share/gdb/python/gdb/printer/bound_registers.py
#usr/share/gdb/python/gdb/printing.py
#usr/share/gdb/python/gdb/prompt.py
#usr/share/gdb/python/gdb/styling.py
#usr/share/gdb/python/gdb/types.py
#usr/share/gdb/python/gdb/unwinder.py
#usr/share/gdb/python/gdb/xmethod.py
@@ -58,6 +56,7 @@
#usr/share/gdb/system-gdbinit/elinos.py
#usr/share/gdb/system-gdbinit/wrs-linux.py
#usr/share/info/annotate.info
#usr/share/info/ctf-spec.info
#usr/share/info/gdb.info
#usr/share/info/gdb.info-1
#usr/share/info/gdb.info-2

View File

@@ -13,15 +13,13 @@ lib/libipq.so.0.0.0
#lib/libxtables.la
lib/libxtables.so
lib/libxtables.so.12
lib/libxtables.so.12.4.0
lib/libxtables.so.12.6.0
#lib/xtables
lib/xtables/libip6t_DNAT.so
lib/xtables/libip6t_DNPT.so
lib/xtables/libip6t_HL.so
lib/xtables/libip6t_LOG.so
lib/xtables/libip6t_MASQUERADE.so
lib/xtables/libip6t_NETMAP.so
lib/xtables/libip6t_REDIRECT.so
lib/xtables/libip6t_REJECT.so
lib/xtables/libip6t_SNAT.so
lib/xtables/libip6t_SNPT.so
@@ -37,12 +35,10 @@ lib/xtables/libip6t_mh.so
lib/xtables/libip6t_rt.so
lib/xtables/libip6t_srh.so
lib/xtables/libipt_CLUSTERIP.so
lib/xtables/libipt_DNAT.so
lib/xtables/libipt_ECN.so
lib/xtables/libipt_LOG.so
lib/xtables/libipt_MASQUERADE.so
lib/xtables/libipt_NETMAP.so
lib/xtables/libipt_REDIRECT.so
lib/xtables/libipt_REJECT.so
lib/xtables/libipt_SNAT.so
lib/xtables/libipt_TTL.so
@@ -57,6 +53,7 @@ lib/xtables/libxt_CLASSIFY.so
lib/xtables/libxt_CONNMARK.so
lib/xtables/libxt_CONNSECMARK.so
lib/xtables/libxt_CT.so
lib/xtables/libxt_DNAT.so
lib/xtables/libxt_DSCP.so
lib/xtables/libxt_HMARK.so
lib/xtables/libxt_IDLETIMER.so
@@ -66,6 +63,7 @@ lib/xtables/libxt_NFLOG.so
lib/xtables/libxt_NFQUEUE.so
lib/xtables/libxt_NOTRACK.so
lib/xtables/libxt_RATEEST.so
lib/xtables/libxt_REDIRECT.so
lib/xtables/libxt_SECMARK.so
lib/xtables/libxt_SET.so
lib/xtables/libxt_SYNPROXY.so

View File

@@ -55,169 +55,170 @@
#usr/lib/libxml2.la
#usr/lib/libxml2.so
usr/lib/libxml2.so.2
usr/lib/libxml2.so.2.9.12
usr/lib/libxml2.so.2.9.14
#usr/lib/pkgconfig/libxml-2.0.pc
#usr/lib/xml2Conf.sh
#usr/share/aclocal/libxml.m4
#usr/share/doc/libxml2-2.9.12
#usr/share/doc/libxml2-2.9.12/Copyright
#usr/share/doc/libxml2-2.9.12/examples
#usr/share/doc/libxml2-2.9.12/examples/testHTML.c
#usr/share/doc/libxml2-2.9.12/examples/testSAX.c
#usr/share/doc/libxml2-2.9.12/examples/testXPath.c
#usr/share/doc/libxml2-2.9.12/examples/xmllint.c
#usr/share/doc/libxml2-2.9.12/html
#usr/share/doc/libxml2-2.9.12/html/DOM.gif
#usr/share/doc/libxml2-2.9.12/html/FAQ.html
#usr/share/doc/libxml2-2.9.12/html/Libxml2-Logo-180x168.gif
#usr/share/doc/libxml2-2.9.12/html/Libxml2-Logo-90x34.gif
#usr/share/doc/libxml2-2.9.12/html/encoding.html
#usr/share/doc/libxml2-2.9.12/html/examples.xml
#usr/share/doc/libxml2-2.9.12/html/examples.xsl
#usr/share/doc/libxml2-2.9.12/html/html
#usr/share/doc/libxml2-2.9.12/html/html/book1.html
#usr/share/doc/libxml2-2.9.12/html/html/home.png
#usr/share/doc/libxml2-2.9.12/html/html/index.html
#usr/share/doc/libxml2-2.9.12/html/html/left.png
#usr/share/doc/libxml2-2.9.12/html/html/libxml-DOCBparser.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-HTMLparser.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-HTMLtree.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-SAX.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-SAX2.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-c14n.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-catalog.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-chvalid.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-debugXML.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-dict.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-encoding.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-entities.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-globals.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-hash.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-lib.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-list.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-nanoftp.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-nanohttp.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-parser.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-parserInternals.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-pattern.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-relaxng.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-schemasInternals.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-schematron.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-threads.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-tree.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-uri.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-valid.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xinclude.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xlink.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlIO.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlautomata.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlerror.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlexports.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlmemory.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlmodule.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlreader.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlregexp.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlsave.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlschemas.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlschemastypes.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlstring.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlunicode.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlversion.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xmlwriter.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xpath.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xpathInternals.html
#usr/share/doc/libxml2-2.9.12/html/html/libxml-xpointer.html
#usr/share/doc/libxml2-2.9.12/html/html/right.png
#usr/share/doc/libxml2-2.9.12/html/html/up.png
#usr/share/doc/libxml2-2.9.12/html/index.html
#usr/share/doc/libxml2-2.9.12/html/io1.c
#usr/share/doc/libxml2-2.9.12/html/io1.res
#usr/share/doc/libxml2-2.9.12/html/io2.c
#usr/share/doc/libxml2-2.9.12/html/io2.res
#usr/share/doc/libxml2-2.9.12/html/libxml.gif
#usr/share/doc/libxml2-2.9.12/html/parse1.c
#usr/share/doc/libxml2-2.9.12/html/parse2.c
#usr/share/doc/libxml2-2.9.12/html/parse3.c
#usr/share/doc/libxml2-2.9.12/html/parse4.c
#usr/share/doc/libxml2-2.9.12/html/reader1.c
#usr/share/doc/libxml2-2.9.12/html/reader1.res
#usr/share/doc/libxml2-2.9.12/html/reader2.c
#usr/share/doc/libxml2-2.9.12/html/reader3.c
#usr/share/doc/libxml2-2.9.12/html/reader3.res
#usr/share/doc/libxml2-2.9.12/html/reader4.c
#usr/share/doc/libxml2-2.9.12/html/reader4.res
#usr/share/doc/libxml2-2.9.12/html/redhat.gif
#usr/share/doc/libxml2-2.9.12/html/smallfootonly.gif
#usr/share/doc/libxml2-2.9.12/html/structure.gif
#usr/share/doc/libxml2-2.9.12/html/test1.xml
#usr/share/doc/libxml2-2.9.12/html/test2.xml
#usr/share/doc/libxml2-2.9.12/html/test3.xml
#usr/share/doc/libxml2-2.9.12/html/testWriter.c
#usr/share/doc/libxml2-2.9.12/html/tree1.c
#usr/share/doc/libxml2-2.9.12/html/tree1.res
#usr/share/doc/libxml2-2.9.12/html/tree2.c
#usr/share/doc/libxml2-2.9.12/html/tree2.res
#usr/share/doc/libxml2-2.9.12/html/tst.xml
#usr/share/doc/libxml2-2.9.12/html/tutorial
#usr/share/doc/libxml2-2.9.12/html/tutorial/apa.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/apb.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/apc.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/apd.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ape.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/apf.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/apg.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/aph.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/api.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s02.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s03.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s04.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s05.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s06.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s07.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s08.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ar01s09.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/images
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/blank.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/1.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/10.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/2.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/3.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/4.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/5.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/6.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/7.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/8.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/callouts/9.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/caution.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/draft.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/home.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/important.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/next.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/note.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/prev.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/tip.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/toc-blank.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/toc-minus.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/toc-plus.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/up.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/images/warning.png
#usr/share/doc/libxml2-2.9.12/html/tutorial/includeaddattribute.c
#usr/share/doc/libxml2-2.9.12/html/tutorial/includeaddkeyword.c
#usr/share/doc/libxml2-2.9.12/html/tutorial/includeconvert.c
#usr/share/doc/libxml2-2.9.12/html/tutorial/includegetattribute.c
#usr/share/doc/libxml2-2.9.12/html/tutorial/includekeyword.c
#usr/share/doc/libxml2-2.9.12/html/tutorial/includexpath.c
#usr/share/doc/libxml2-2.9.12/html/tutorial/index.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/ix01.html
#usr/share/doc/libxml2-2.9.12/html/tutorial/xmltutorial.pdf
#usr/share/doc/libxml2-2.9.12/html/w3c.png
#usr/share/doc/libxml2-2.9.12/html/writer.xml
#usr/share/doc/libxml2-2.9.12/html/xml.html
#usr/share/doc/libxml2-2.9.12/html/xpath1.c
#usr/share/doc/libxml2-2.9.12/html/xpath1.res
#usr/share/doc/libxml2-2.9.12/html/xpath2.c
#usr/share/doc/libxml2-2.9.12/html/xpath2.res
#usr/share/doc/libxml2
#usr/share/doc/libxml2/Copyright
#usr/share/doc/libxml2/examples
#usr/share/doc/libxml2/examples/README
#usr/share/doc/libxml2/examples/testHTML.c
#usr/share/doc/libxml2/examples/testSAX.c
#usr/share/doc/libxml2/examples/testXPath.c
#usr/share/doc/libxml2/examples/xmllint.c
#usr/share/doc/libxml2/html
#usr/share/doc/libxml2/html/DOM.gif
#usr/share/doc/libxml2/html/FAQ.html
#usr/share/doc/libxml2/html/Libxml2-Logo-180x168.gif
#usr/share/doc/libxml2/html/Libxml2-Logo-90x34.gif
#usr/share/doc/libxml2/html/encoding.html
#usr/share/doc/libxml2/html/examples
#usr/share/doc/libxml2/html/examples/examples.xml
#usr/share/doc/libxml2/html/examples/examples.xsl
#usr/share/doc/libxml2/html/examples/index.html
#usr/share/doc/libxml2/html/examples/io1.c
#usr/share/doc/libxml2/html/examples/io1.res
#usr/share/doc/libxml2/html/examples/io2.c
#usr/share/doc/libxml2/html/examples/io2.res
#usr/share/doc/libxml2/html/examples/parse1.c
#usr/share/doc/libxml2/html/examples/parse2.c
#usr/share/doc/libxml2/html/examples/parse3.c
#usr/share/doc/libxml2/html/examples/parse4.c
#usr/share/doc/libxml2/html/examples/reader1.c
#usr/share/doc/libxml2/html/examples/reader1.res
#usr/share/doc/libxml2/html/examples/reader2.c
#usr/share/doc/libxml2/html/examples/reader3.c
#usr/share/doc/libxml2/html/examples/reader3.res
#usr/share/doc/libxml2/html/examples/reader4.c
#usr/share/doc/libxml2/html/examples/reader4.res
#usr/share/doc/libxml2/html/examples/test1.xml
#usr/share/doc/libxml2/html/examples/test2.xml
#usr/share/doc/libxml2/html/examples/test3.xml
#usr/share/doc/libxml2/html/examples/testWriter.c
#usr/share/doc/libxml2/html/examples/tree1.c
#usr/share/doc/libxml2/html/examples/tree1.res
#usr/share/doc/libxml2/html/examples/tree2.c
#usr/share/doc/libxml2/html/examples/tree2.res
#usr/share/doc/libxml2/html/examples/tst.xml
#usr/share/doc/libxml2/html/examples/writer.xml
#usr/share/doc/libxml2/html/examples/xpath1.c
#usr/share/doc/libxml2/html/examples/xpath1.res
#usr/share/doc/libxml2/html/examples/xpath2.c
#usr/share/doc/libxml2/html/examples/xpath2.res
#usr/share/doc/libxml2/html/html
#usr/share/doc/libxml2/html/html/book1.html
#usr/share/doc/libxml2/html/html/home.png
#usr/share/doc/libxml2/html/html/index.html
#usr/share/doc/libxml2/html/html/left.png
#usr/share/doc/libxml2/html/html/libxml-DOCBparser.html
#usr/share/doc/libxml2/html/html/libxml-HTMLparser.html
#usr/share/doc/libxml2/html/html/libxml-HTMLtree.html
#usr/share/doc/libxml2/html/html/libxml-SAX.html
#usr/share/doc/libxml2/html/html/libxml-SAX2.html
#usr/share/doc/libxml2/html/html/libxml-c14n.html
#usr/share/doc/libxml2/html/html/libxml-catalog.html
#usr/share/doc/libxml2/html/html/libxml-chvalid.html
#usr/share/doc/libxml2/html/html/libxml-debugXML.html
#usr/share/doc/libxml2/html/html/libxml-dict.html
#usr/share/doc/libxml2/html/html/libxml-encoding.html
#usr/share/doc/libxml2/html/html/libxml-entities.html
#usr/share/doc/libxml2/html/html/libxml-globals.html
#usr/share/doc/libxml2/html/html/libxml-hash.html
#usr/share/doc/libxml2/html/html/libxml-lib.html
#usr/share/doc/libxml2/html/html/libxml-list.html
#usr/share/doc/libxml2/html/html/libxml-nanoftp.html
#usr/share/doc/libxml2/html/html/libxml-nanohttp.html
#usr/share/doc/libxml2/html/html/libxml-parser.html
#usr/share/doc/libxml2/html/html/libxml-parserInternals.html
#usr/share/doc/libxml2/html/html/libxml-pattern.html
#usr/share/doc/libxml2/html/html/libxml-relaxng.html
#usr/share/doc/libxml2/html/html/libxml-schemasInternals.html
#usr/share/doc/libxml2/html/html/libxml-schematron.html
#usr/share/doc/libxml2/html/html/libxml-threads.html
#usr/share/doc/libxml2/html/html/libxml-tree.html
#usr/share/doc/libxml2/html/html/libxml-uri.html
#usr/share/doc/libxml2/html/html/libxml-valid.html
#usr/share/doc/libxml2/html/html/libxml-xinclude.html
#usr/share/doc/libxml2/html/html/libxml-xlink.html
#usr/share/doc/libxml2/html/html/libxml-xmlIO.html
#usr/share/doc/libxml2/html/html/libxml-xmlautomata.html
#usr/share/doc/libxml2/html/html/libxml-xmlerror.html
#usr/share/doc/libxml2/html/html/libxml-xmlexports.html
#usr/share/doc/libxml2/html/html/libxml-xmlmemory.html
#usr/share/doc/libxml2/html/html/libxml-xmlmodule.html
#usr/share/doc/libxml2/html/html/libxml-xmlreader.html
#usr/share/doc/libxml2/html/html/libxml-xmlregexp.html
#usr/share/doc/libxml2/html/html/libxml-xmlsave.html
#usr/share/doc/libxml2/html/html/libxml-xmlschemas.html
#usr/share/doc/libxml2/html/html/libxml-xmlschemastypes.html
#usr/share/doc/libxml2/html/html/libxml-xmlstring.html
#usr/share/doc/libxml2/html/html/libxml-xmlunicode.html
#usr/share/doc/libxml2/html/html/libxml-xmlversion.html
#usr/share/doc/libxml2/html/html/libxml-xmlwriter.html
#usr/share/doc/libxml2/html/html/libxml-xpath.html
#usr/share/doc/libxml2/html/html/libxml-xpathInternals.html
#usr/share/doc/libxml2/html/html/libxml-xpointer.html
#usr/share/doc/libxml2/html/html/right.png
#usr/share/doc/libxml2/html/html/up.png
#usr/share/doc/libxml2/html/libxml.gif
#usr/share/doc/libxml2/html/redhat.gif
#usr/share/doc/libxml2/html/smallfootonly.gif
#usr/share/doc/libxml2/html/structure.gif
#usr/share/doc/libxml2/html/tutorial
#usr/share/doc/libxml2/html/tutorial/apa.html
#usr/share/doc/libxml2/html/tutorial/apb.html
#usr/share/doc/libxml2/html/tutorial/apc.html
#usr/share/doc/libxml2/html/tutorial/apd.html
#usr/share/doc/libxml2/html/tutorial/ape.html
#usr/share/doc/libxml2/html/tutorial/apf.html
#usr/share/doc/libxml2/html/tutorial/apg.html
#usr/share/doc/libxml2/html/tutorial/aph.html
#usr/share/doc/libxml2/html/tutorial/api.html
#usr/share/doc/libxml2/html/tutorial/ar01s02.html
#usr/share/doc/libxml2/html/tutorial/ar01s03.html
#usr/share/doc/libxml2/html/tutorial/ar01s04.html
#usr/share/doc/libxml2/html/tutorial/ar01s05.html
#usr/share/doc/libxml2/html/tutorial/ar01s06.html
#usr/share/doc/libxml2/html/tutorial/ar01s07.html
#usr/share/doc/libxml2/html/tutorial/ar01s08.html
#usr/share/doc/libxml2/html/tutorial/ar01s09.html
#usr/share/doc/libxml2/html/tutorial/images
#usr/share/doc/libxml2/html/tutorial/images/blank.png
#usr/share/doc/libxml2/html/tutorial/images/callouts
#usr/share/doc/libxml2/html/tutorial/images/callouts/1.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/10.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/2.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/3.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/4.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/5.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/6.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/7.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/8.png
#usr/share/doc/libxml2/html/tutorial/images/callouts/9.png
#usr/share/doc/libxml2/html/tutorial/images/caution.png
#usr/share/doc/libxml2/html/tutorial/images/draft.png
#usr/share/doc/libxml2/html/tutorial/images/home.png
#usr/share/doc/libxml2/html/tutorial/images/important.png
#usr/share/doc/libxml2/html/tutorial/images/next.png
#usr/share/doc/libxml2/html/tutorial/images/note.png
#usr/share/doc/libxml2/html/tutorial/images/prev.png
#usr/share/doc/libxml2/html/tutorial/images/tip.png
#usr/share/doc/libxml2/html/tutorial/images/toc-blank.png
#usr/share/doc/libxml2/html/tutorial/images/toc-minus.png
#usr/share/doc/libxml2/html/tutorial/images/toc-plus.png
#usr/share/doc/libxml2/html/tutorial/images/up.png
#usr/share/doc/libxml2/html/tutorial/images/warning.png
#usr/share/doc/libxml2/html/tutorial/includeaddattribute.c
#usr/share/doc/libxml2/html/tutorial/includeaddkeyword.c
#usr/share/doc/libxml2/html/tutorial/includeconvert.c
#usr/share/doc/libxml2/html/tutorial/includegetattribute.c
#usr/share/doc/libxml2/html/tutorial/includekeyword.c
#usr/share/doc/libxml2/html/tutorial/includexpath.c
#usr/share/doc/libxml2/html/tutorial/index.html
#usr/share/doc/libxml2/html/tutorial/ix01.html
#usr/share/doc/libxml2/html/w3c.png
#usr/share/doc/libxml2/html/xml.html
#usr/share/gtk-doc/html/libxml2
#usr/share/gtk-doc/html/libxml2/general.html
#usr/share/gtk-doc/html/libxml2/home.png
@@ -270,7 +271,7 @@ usr/lib/libxml2.so.2.9.12
#usr/share/gtk-doc/html/libxml2/libxml2-xpath.html
#usr/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html
#usr/share/gtk-doc/html/libxml2/libxml2-xpointer.html
#usr/share/gtk-doc/html/libxml2/libxml2.devhelp
#usr/share/gtk-doc/html/libxml2/libxml2.devhelp2
#usr/share/gtk-doc/html/libxml2/right.png
#usr/share/gtk-doc/html/libxml2/style.css
#usr/share/gtk-doc/html/libxml2/up.png

View File

@@ -26,6 +26,9 @@ usr/bin/xsltproc
#usr/include/libxslt/xsltexports.h
#usr/include/libxslt/xsltlocale.h
#usr/include/libxslt/xsltutils.h
#usr/lib/cmake/libxslt
#usr/lib/cmake/libxslt/FindGcrypt.cmake
#usr/lib/cmake/libxslt/libxslt-config.cmake
#usr/lib/libexslt.la
#usr/lib/libexslt.so
usr/lib/libexslt.so.0
@@ -34,106 +37,146 @@ usr/lib/libexslt.so.0.8.20
#usr/lib/libxslt.la
#usr/lib/libxslt.so
usr/lib/libxslt.so.1
usr/lib/libxslt.so.1.1.34
usr/lib/libxslt.so.1.1.35
#usr/lib/pkgconfig/libexslt.pc
#usr/lib/pkgconfig/libxslt.pc
#usr/lib/xsltConf.sh
#usr/share/aclocal/libxslt.m4
#usr/share/doc/libxslt-1.1.34
#usr/share/doc/libxslt-1.1.34/html
#usr/share/doc/libxslt-1.1.34/html/API.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk0.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk1.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk10.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk11.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk12.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk2.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk3.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk4.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk5.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk6.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk7.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk8.html
#usr/share/doc/libxslt-1.1.34/html/APIchunk9.html
#usr/share/doc/libxslt-1.1.34/html/APIconstructors.html
#usr/share/doc/libxslt-1.1.34/html/APIfiles.html
#usr/share/doc/libxslt-1.1.34/html/APIfunctions.html
#usr/share/doc/libxslt-1.1.34/html/APIsymbols.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT
#usr/share/doc/libxslt-1.1.34/html/EXSLT/APIchunk0.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/APIconstructors.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/APIfiles.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/APIfunctions.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/APIsymbols.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/bugs.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/docs.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/downloads.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/exslt.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/help.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/index.html
#usr/share/doc/libxslt-1.1.34/html/EXSLT/intro.html
#usr/share/doc/libxslt-1.1.34/html/FAQ.html
#usr/share/doc/libxslt-1.1.34/html/Libxslt-Logo-180x168.gif
#usr/share/doc/libxslt-1.1.34/html/Libxslt-Logo-90x34.gif
#usr/share/doc/libxslt-1.1.34/html/bugs.html
#usr/share/doc/libxslt-1.1.34/html/contexts.gif
#usr/share/doc/libxslt-1.1.34/html/contribs.html
#usr/share/doc/libxslt-1.1.34/html/docbook.html
#usr/share/doc/libxslt-1.1.34/html/docs.html
#usr/share/doc/libxslt-1.1.34/html/downloads.html
#usr/share/doc/libxslt-1.1.34/html/extensions.html
#usr/share/doc/libxslt-1.1.34/html/help.html
#usr/share/doc/libxslt-1.1.34/html/html
#usr/share/doc/libxslt-1.1.34/html/html/book1.html
#usr/share/doc/libxslt-1.1.34/html/html/home.png
#usr/share/doc/libxslt-1.1.34/html/html/index.html
#usr/share/doc/libxslt-1.1.34/html/html/left.png
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-attributes.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-documents.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-extensions.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-extra.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-functions.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-imports.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-keys.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-lib.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-namespaces.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-numbersInternals.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-pattern.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-preproc.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-security.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-templates.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-transform.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-variables.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-xslt.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-xsltInternals.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-xsltexports.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-xsltlocale.html
#usr/share/doc/libxslt-1.1.34/html/html/libxslt-xsltutils.html
#usr/share/doc/libxslt-1.1.34/html/html/right.png
#usr/share/doc/libxslt-1.1.34/html/html/up.png
#usr/share/doc/libxslt-1.1.34/html/index.html
#usr/share/doc/libxslt-1.1.34/html/internals.html
#usr/share/doc/libxslt-1.1.34/html/intro.html
#usr/share/doc/libxslt-1.1.34/html/news.html
#usr/share/doc/libxslt-1.1.34/html/node.gif
#usr/share/doc/libxslt-1.1.34/html/object.gif
#usr/share/doc/libxslt-1.1.34/html/processing.gif
#usr/share/doc/libxslt-1.1.34/html/python.html
#usr/share/doc/libxslt-1.1.34/html/redhat.gif
#usr/share/doc/libxslt-1.1.34/html/smallfootonly.gif
#usr/share/doc/libxslt-1.1.34/html/stylesheet.gif
#usr/share/doc/libxslt-1.1.34/html/templates.gif
#usr/share/doc/libxslt-1.1.34/html/tutorial
#usr/share/doc/libxslt-1.1.34/html/tutorial/libxslt_tutorial.c
#usr/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.html
#usr/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.xml
#usr/share/doc/libxslt-1.1.34/html/tutorial2
#usr/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.c
#usr/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.html
#usr/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.xml
#usr/share/doc/libxslt-1.1.34/html/xslt.html
#usr/share/doc/libxslt-1.1.34/html/xsltproc.html
#usr/share/doc/libxslt-1.1.34/html/xsltproc2.html
#usr/share/doc/libxslt-1.1.35
#usr/share/doc/libxslt-1.1.35/html
#usr/share/doc/libxslt-1.1.35/html/API.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk0.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk1.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk10.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk11.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk12.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk2.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk3.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk4.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk5.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk6.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk7.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk8.html
#usr/share/doc/libxslt-1.1.35/html/APIchunk9.html
#usr/share/doc/libxslt-1.1.35/html/APIconstructors.html
#usr/share/doc/libxslt-1.1.35/html/APIfiles.html
#usr/share/doc/libxslt-1.1.35/html/APIfunctions.html
#usr/share/doc/libxslt-1.1.35/html/APIsymbols.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT
#usr/share/doc/libxslt-1.1.35/html/EXSLT/APIchunk0.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/APIconstructors.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/APIfiles.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/APIfunctions.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/APIsymbols.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/bugs.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/docs.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/downloads.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/exslt.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/help.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/index.html
#usr/share/doc/libxslt-1.1.35/html/EXSLT/intro.html
#usr/share/doc/libxslt-1.1.35/html/FAQ.html
#usr/share/doc/libxslt-1.1.35/html/Libxslt-Logo-180x168.gif
#usr/share/doc/libxslt-1.1.35/html/Libxslt-Logo-90x34.gif
#usr/share/doc/libxslt-1.1.35/html/bugs.html
#usr/share/doc/libxslt-1.1.35/html/contexts.gif
#usr/share/doc/libxslt-1.1.35/html/contribs.html
#usr/share/doc/libxslt-1.1.35/html/docbook.html
#usr/share/doc/libxslt-1.1.35/html/docs.html
#usr/share/doc/libxslt-1.1.35/html/downloads.html
#usr/share/doc/libxslt-1.1.35/html/extensions.html
#usr/share/doc/libxslt-1.1.35/html/help.html
#usr/share/doc/libxslt-1.1.35/html/html
#usr/share/doc/libxslt-1.1.35/html/html/book1.html
#usr/share/doc/libxslt-1.1.35/html/html/home.png
#usr/share/doc/libxslt-1.1.35/html/html/index.html
#usr/share/doc/libxslt-1.1.35/html/html/left.png
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-attributes.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-documents.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-extensions.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-extra.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-functions.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-imports.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-keys.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-lib.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-namespaces.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-numbersInternals.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-pattern.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-preproc.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-security.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-templates.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-transform.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-variables.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-xslt.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-xsltInternals.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-xsltexports.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-xsltlocale.html
#usr/share/doc/libxslt-1.1.35/html/html/libxslt-xsltutils.html
#usr/share/doc/libxslt-1.1.35/html/html/right.png
#usr/share/doc/libxslt-1.1.35/html/html/up.png
#usr/share/doc/libxslt-1.1.35/html/index.html
#usr/share/doc/libxslt-1.1.35/html/internals.html
#usr/share/doc/libxslt-1.1.35/html/intro.html
#usr/share/doc/libxslt-1.1.35/html/news.html
#usr/share/doc/libxslt-1.1.35/html/node.gif
#usr/share/doc/libxslt-1.1.35/html/object.gif
#usr/share/doc/libxslt-1.1.35/html/processing.gif
#usr/share/doc/libxslt-1.1.35/html/python.html
#usr/share/doc/libxslt-1.1.35/html/redhat.gif
#usr/share/doc/libxslt-1.1.35/html/smallfootonly.gif
#usr/share/doc/libxslt-1.1.35/html/stylesheet.gif
#usr/share/doc/libxslt-1.1.35/html/templates.gif
#usr/share/doc/libxslt-1.1.35/html/tutorial
#usr/share/doc/libxslt-1.1.35/html/tutorial/libxslt_tutorial.c
#usr/share/doc/libxslt-1.1.35/html/tutorial/libxslttutorial.html
#usr/share/doc/libxslt-1.1.35/html/tutorial/libxslttutorial.xml
#usr/share/doc/libxslt-1.1.35/html/tutorial2
#usr/share/doc/libxslt-1.1.35/html/tutorial2/libxslt_pipes.c
#usr/share/doc/libxslt-1.1.35/html/tutorial2/libxslt_pipes.html
#usr/share/doc/libxslt-1.1.35/html/tutorial2/libxslt_pipes.xml
#usr/share/doc/libxslt-1.1.35/html/xslt.html
#usr/share/doc/libxslt-1.1.35/html/xsltproc.html
#usr/share/doc/libxslt-1.1.35/html/xsltproc2.html
#usr/share/gtk-doc/html/libexslt
#usr/share/gtk-doc/html/libexslt/general.html
#usr/share/gtk-doc/html/libexslt/home.png
#usr/share/gtk-doc/html/libexslt/index.html
#usr/share/gtk-doc/html/libexslt/left.png
#usr/share/gtk-doc/html/libexslt/libexslt-exslt.html
#usr/share/gtk-doc/html/libexslt/libexslt-exsltexports.html
#usr/share/gtk-doc/html/libexslt/libexslt.devhelp2
#usr/share/gtk-doc/html/libexslt/right.png
#usr/share/gtk-doc/html/libexslt/style.css
#usr/share/gtk-doc/html/libexslt/up.png
#usr/share/gtk-doc/html/libxslt
#usr/share/gtk-doc/html/libxslt/general.html
#usr/share/gtk-doc/html/libxslt/home.png
#usr/share/gtk-doc/html/libxslt/index.html
#usr/share/gtk-doc/html/libxslt/left.png
#usr/share/gtk-doc/html/libxslt/libxslt-attributes.html
#usr/share/gtk-doc/html/libxslt/libxslt-documents.html
#usr/share/gtk-doc/html/libxslt/libxslt-extensions.html
#usr/share/gtk-doc/html/libxslt/libxslt-extra.html
#usr/share/gtk-doc/html/libxslt/libxslt-functions.html
#usr/share/gtk-doc/html/libxslt/libxslt-imports.html
#usr/share/gtk-doc/html/libxslt/libxslt-keys.html
#usr/share/gtk-doc/html/libxslt/libxslt-namespaces.html
#usr/share/gtk-doc/html/libxslt/libxslt-numbersInternals.html
#usr/share/gtk-doc/html/libxslt/libxslt-pattern.html
#usr/share/gtk-doc/html/libxslt/libxslt-preproc.html
#usr/share/gtk-doc/html/libxslt/libxslt-security.html
#usr/share/gtk-doc/html/libxslt/libxslt-templates.html
#usr/share/gtk-doc/html/libxslt/libxslt-transform.html
#usr/share/gtk-doc/html/libxslt/libxslt-variables.html
#usr/share/gtk-doc/html/libxslt/libxslt-xslt.html
#usr/share/gtk-doc/html/libxslt/libxslt-xsltInternals.html
#usr/share/gtk-doc/html/libxslt/libxslt-xsltexports.html
#usr/share/gtk-doc/html/libxslt/libxslt-xsltlocale.html
#usr/share/gtk-doc/html/libxslt/libxslt-xsltutils.html
#usr/share/gtk-doc/html/libxslt/libxslt.devhelp2
#usr/share/gtk-doc/html/libxslt/right.png
#usr/share/gtk-doc/html/libxslt/style.css
#usr/share/gtk-doc/html/libxslt/up.png
#usr/share/man/man1/xsltproc.1
#usr/share/man/man3/libexslt.3
#usr/share/man/man3/libxslt.3

View File

@@ -25,7 +25,7 @@
#usr/include/libyang/version.h
#usr/lib/libyang.so
usr/lib/libyang.so.2
usr/lib/libyang.so.2.1.4
#usr/lib/pkgconfig
usr/lib/libyang.so.2.20.15
#usr/lib/pkgconfig/libyang.pc
#usr/share/man/man1/yanglint.1
#usr/share/man/man1/yangre.1

View File

@@ -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.14
usr/lib/libunbound.so.8.1.16
#usr/lib/pkgconfig/libunbound.pc
usr/sbin/unbound
usr/sbin/unbound-anchor

File diff suppressed because it is too large Load Diff

View File

@@ -95,6 +95,10 @@ lib/firmware/intel-ucode/06-8e-0a
lib/firmware/intel-ucode/06-8e-0b
lib/firmware/intel-ucode/06-8e-0c
lib/firmware/intel-ucode/06-96-01
lib/firmware/intel-ucode/06-97-02
lib/firmware/intel-ucode/06-97-05
lib/firmware/intel-ucode/06-9a-03
lib/firmware/intel-ucode/06-9a-04
lib/firmware/intel-ucode/06-9c-00
lib/firmware/intel-ucode/06-9e-09
lib/firmware/intel-ucode/06-9e-0a
@@ -107,6 +111,8 @@ lib/firmware/intel-ucode/06-a5-05
lib/firmware/intel-ucode/06-a6-00
lib/firmware/intel-ucode/06-a6-01
lib/firmware/intel-ucode/06-a7-01
lib/firmware/intel-ucode/06-bf-02
lib/firmware/intel-ucode/06-bf-05
lib/firmware/intel-ucode/0f-00-07
lib/firmware/intel-ucode/0f-00-0a
lib/firmware/intel-ucode/0f-01-02

View File

@@ -99,6 +99,7 @@ usr/local/bin/ipsec-interfaces
usr/local/bin/makegraphs
usr/local/bin/qosd
usr/local/bin/readhash
usr/local/bin/repair-mdraid
usr/local/bin/run-parts
usr/local/bin/scanhd
usr/local/bin/settime

View File

@@ -103,3 +103,10 @@ usr/sbin/xfs_spaceman
#usr/share/man/man8/xfs_scrub.8
#usr/share/man/man8/xfs_scrub_all.8
#usr/share/man/man8/xfs_spaceman.8
#usr/share/xfsprogs
#usr/share/xfsprogs/mkfs
#usr/share/xfsprogs/mkfs/dax_xxxMACHINExxx.conf
#usr/share/xfsprogs/mkfs/lts_4.19.conf
#usr/share/xfsprogs/mkfs/lts_5.10.conf
#usr/share/xfsprogs/mkfs/lts_5.15.conf
#usr/share/xfsprogs/mkfs/lts_5.4.conf

View File

@@ -0,0 +1 @@
../../../../common/aarch64/gcc

View File

@@ -0,0 +1 @@
../../../../common/armv6l/gcc

View File

@@ -0,0 +1 @@
../core-files

View File

@@ -0,0 +1,8 @@
etc/rc.d/helper/oci-setup
etc/rc.d/helper/azure-setup
etc/rc.d/helper/aws-setup
etc/rc.d/helper/exoscale-setup
etc/rc.d/helper/gcp-setup
srv/web/ipfire/html/themes/ipfire/include/functions.pl
var/ipfire/header.pl
var/ipfire/main/manualpages

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,81 @@
#!/bin/bash
############################################################################
# #
# This file is part of the IPFire Firewall. #
# #
# IPFire is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 3 of the License, or #
# (at your option) any later version. #
# #
# IPFire is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPFire; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Copyright (C) 2022 IPFire-Team <info@ipfire.org>. #
# #
############################################################################
#
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
core=169
# Remove old core updates from pakfire cache to save space...
for (( i=1; i<=$core; i++ )); do
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
done
# Stop services
/etc/init.d/unbound stop
# Remove files
rm -rvf \
/lib/libxtables.so.12.4.0 \
/lib/xtables/libip6t_DNAT.so \
/lib/xtables/libip6t_REDIRECT.so \
/lib/xtables/libipt_DNAT.so \
/lib/xtables/libipt_REDIRECT.so \
/usr/lib/libfuse3.so.3.10.4 \
/usr/lib/libunbound.so.8.1.14
/usr/lib/libxml2.so.2.9.12 \
/usr/lib/libxslt.so.1.1.34 \
/usr/lib/libyang.so.2.1.4
# Extract files
extract_files
# update linker config
ldconfig
# Update Language cache
/usr/local/bin/update-lang-cache
# Filesytem cleanup
/usr/local/bin/filesystem-cleanup
# Start services
/etc/init.d/firewall restart
/etc/init.d/unbound start
# This update needs a reboot...
touch /var/run/need_reboot
# Finish
/etc/init.d/fireinfo start
sendprofile
# Update grub config to display new core version
if [ -e /boot/grub/grub.cfg ]; then
grub-mkconfig -o /boot/grub/grub.cfg
fi
sync
# Don't report the exitcode last command
exit 0

View File

@@ -0,0 +1,35 @@
boot/config.txt
boot/grub/grub.cfg
boot/grub/grubenv
boot/uEnv.txt
etc/alternatives
etc/collectd.custom
etc/default/grub
etc/ipsec.conf
etc/ipsec.secrets
etc/ipsec.user.conf
etc/ipsec.user.secrets
etc/localtime
etc/shadow
etc/snort/snort.conf
etc/ssl/openssl.cnf
etc/sudoers
etc/sysconfig/firewall.local
etc/sysconfig/rc.local
etc/udev/rules.d/30-persistent-network.rules
srv/web/ipfire/html/proxy.pac
usr/share/xt_geoip
var/ipfire/dma
var/ipfire/time
var/ipfire/firewall/locationblock
var/ipfire/fwhosts/customlocationgrp
var/ipfire/ovpn
var/ipfire/urlfilter/blacklist
var/ipfire/urlfilter/settings
var/lib/alternatives
var/lib/location/database.db
var/log/cache
var/log/dhcpcd.log
var/log/messages
var/state/dhcp/dhcpd.leases
var/updatecache

View File

@@ -0,0 +1,5 @@
etc/system-release
etc/issue
etc/os-release
srv/web/ipfire/cgi-bin/credits.cgi
var/ipfire/langs

View File

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

View File

@@ -391,7 +391,6 @@ lib/firmware/rtw88/rtw8821c_fw.bin
lib/firmware/rtw88/rtw8822c_fw.bin
lib/firmware/rtw89/rtw8852a_fw.bin
lib/firmware/wfx/wfm_wf200_C0.sec
usr/bin/fcrontab
usr/lib/firewall/rules.pl
usr/local/bin/update-ids-ruleset
usr/sbin/convert-ids-backend-files
@@ -404,3 +403,4 @@ var/ipfire/header.pl
var/ipfire/ids-functions.pl
var/ipfire/menu.d/20-status.menu
var/ipfire/menu.d/30-network.menu
var/spool/cron/root.orig

View File

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

View File

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

View File

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

View File

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

View File

@@ -120,6 +120,16 @@ case "$(uname -m)" in
;;
esac
# Add rd.auto to kernel command line
if ! grep -q rd.auto /etc/default/grub; then
sed -e "s/panic=10/& rd.auto/" -i /etc/default/grub
fi
# Repair any broken MDRAID arrays
/usr/local/bin/repair-mdraid
# Rebuild fcrontab from scratch
/usr/bin/fcrontab -z
# Start services
/etc/init.d/fcron restart

File diff suppressed because it is too large Load Diff

View File

@@ -54,6 +54,8 @@ usr/sbin/clamd
#usr/share/doc/ClamAV/html/ayu-highlight.css
#usr/share/doc/ClamAV/html/book.js
#usr/share/doc/ClamAV/html/clipboard.min.js
#usr/share/doc/ClamAV/html/community_resources
#usr/share/doc/ClamAV/html/community_resources/CommunityResources.html
#usr/share/doc/ClamAV/html/css
#usr/share/doc/ClamAV/html/css/chrome.css
#usr/share/doc/ClamAV/html/css/general.css
@@ -69,6 +71,7 @@ usr/sbin/clamd
#usr/share/doc/ClamAV/html/faq/faq-misc.html
#usr/share/doc/ClamAV/html/faq/faq-ml.html
#usr/share/doc/ClamAV/html/faq/faq-pua.html
#usr/share/doc/ClamAV/html/faq/faq-rust.html
#usr/share/doc/ClamAV/html/faq/faq-safebrowsing.html
#usr/share/doc/ClamAV/html/faq/faq-scan-alerts.html
#usr/share/doc/ClamAV/html/faq/faq-troubleshoot.html
@@ -147,6 +150,7 @@ usr/sbin/clamd
#usr/share/doc/ClamAV/html/manual/Signatures/HashSignatures.html
#usr/share/doc/ClamAV/html/manual/Signatures/LogicalSignatures.html
#usr/share/doc/ClamAV/html/manual/Signatures/PhishSigs.html
#usr/share/doc/ClamAV/html/manual/Signatures/SignatureNames.html
#usr/share/doc/ClamAV/html/manual/Signatures/YaraRules.html
#usr/share/doc/ClamAV/html/manual/Usage
#usr/share/doc/ClamAV/html/manual/Usage.html

View File

@@ -2,162 +2,159 @@
#usr/include/vorbis/codec.h
#usr/include/vorbis/vorbisenc.h
#usr/include/vorbis/vorbisfile.h
#usr/lib/libvorbis.a
#usr/lib/libvorbis.la
#usr/lib/libvorbis.so
usr/lib/libvorbis.so.0
usr/lib/libvorbis.so.0.4.8
#usr/lib/libvorbisenc.a
usr/lib/libvorbis.so.0.4.9
#usr/lib/libvorbisenc.la
#usr/lib/libvorbisenc.so
usr/lib/libvorbisenc.so.2
usr/lib/libvorbisenc.so.2.0.11
#usr/lib/libvorbisfile.a
usr/lib/libvorbisenc.so.2.0.12
#usr/lib/libvorbisfile.la
#usr/lib/libvorbisfile.so
usr/lib/libvorbisfile.so.3
usr/lib/libvorbisfile.so.3.3.7
usr/lib/libvorbisfile.so.3.3.8
#usr/lib/pkgconfig/vorbis.pc
#usr/lib/pkgconfig/vorbisenc.pc
#usr/lib/pkgconfig/vorbisfile.pc
#usr/share/aclocal/vorbis.m4
#usr/share/doc/libvorbis-1.3.6
#usr/share/doc/libvorbis-1.3.6/doxygen-build.stamp
#usr/share/doc/libvorbis-1.3.6/eightphase.png
#usr/share/doc/libvorbis-1.3.6/fish_xiph_org.png
#usr/share/doc/libvorbis-1.3.6/floor1_inverse_dB_table.html
#usr/share/doc/libvorbis-1.3.6/floorval.png
#usr/share/doc/libvorbis-1.3.6/fourphase.png
#usr/share/doc/libvorbis-1.3.6/framing.html
#usr/share/doc/libvorbis-1.3.6/helper.html
#usr/share/doc/libvorbis-1.3.6/index.html
#usr/share/doc/libvorbis-1.3.6/libvorbis
#usr/share/doc/libvorbis-1.3.6/libvorbis/index.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/overview.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/reference.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/return.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/style.css
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_analysis.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_analysis_blockout.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_analysis_buffer.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_analysis_headerout.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_analysis_init.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_analysis_wrote.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_bitrate_addblock.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_bitrate_flushpacket.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_block.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_block_clear.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_block_init.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment_add.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment_add_tag.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment_clear.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment_init.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment_query.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_comment_query_count.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_commentheader_out.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_dsp_clear.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_dsp_state.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_granule_time.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_info.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_info_blocksize.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_info_clear.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_info_init.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_packet_blocksize.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_blockin.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_halfrate.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_halfrate_p.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_headerin.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_idheader.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_init.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_lapout.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_pcmout.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_read.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_restart.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_synthesis_trackonly.html
#usr/share/doc/libvorbis-1.3.6/libvorbis/vorbis_version_string.html
#usr/share/doc/libvorbis-1.3.6/oggstream.html
#usr/share/doc/libvorbis-1.3.6/programming.html
#usr/share/doc/libvorbis-1.3.6/rfc5215.txt
#usr/share/doc/libvorbis-1.3.6/rfc5215.xml
#usr/share/doc/libvorbis-1.3.6/squarepolar.png
#usr/share/doc/libvorbis-1.3.6/stereo.html
#usr/share/doc/libvorbis-1.3.6/stream.png
#usr/share/doc/libvorbis-1.3.6/v-comment.html
#usr/share/doc/libvorbis-1.3.6/vorbis-clip.txt
#usr/share/doc/libvorbis-1.3.6/vorbis-errors.txt
#usr/share/doc/libvorbis-1.3.6/vorbis-fidelity.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc
#usr/share/doc/libvorbis-1.3.6/vorbisenc/changes.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/examples.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/index.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/ovectl_ratemanage2_arg.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/ovectl_ratemanage_arg.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/overview.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/reference.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/style.css
#usr/share/doc/libvorbis-1.3.6/vorbisenc/vorbis_encode_ctl.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/vorbis_encode_init.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/vorbis_encode_init_vbr.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/vorbis_encode_setup_init.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/vorbis_encode_setup_managed.html
#usr/share/doc/libvorbis-1.3.6/vorbisenc/vorbis_encode_setup_vbr.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile
#usr/share/doc/libvorbis-1.3.6/vorbisfile/OggVorbis_File.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/callbacks.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/chaining_example_c.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/chainingexample.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/crosslap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/datastructures.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/decoding.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/example.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/exampleindex.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/fileinfo.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/index.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/initialization.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_bitrate.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_bitrate_instant.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_callbacks.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_clear.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_comment.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_crosslap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_fopen.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_info.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_open.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_open_callbacks.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_pcm_seek.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_pcm_seek_lap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_pcm_seek_page.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_pcm_seek_page_lap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_pcm_tell.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_pcm_total.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_raw_seek.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_raw_seek_lap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_raw_tell.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_raw_total.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_read.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_read_filter.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_read_float.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_seekable.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_serialnumber.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_streams.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_test.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_test_callbacks.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_test_open.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_time_seek.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_time_seek_lap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_time_seek_page.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_time_seek_page_lap.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_time_tell.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/ov_time_total.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/overview.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/reference.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/seekexample.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/seeking.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/seeking_example_c.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/seeking_test_c.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/seekingexample.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/style.css
#usr/share/doc/libvorbis-1.3.6/vorbisfile/threads.html
#usr/share/doc/libvorbis-1.3.6/vorbisfile/vorbisfile_example_c.html
#usr/share/doc/libvorbis-1.3.7
#usr/share/doc/libvorbis-1.3.7/doxygen-build.stamp
#usr/share/doc/libvorbis-1.3.7/eightphase.png
#usr/share/doc/libvorbis-1.3.7/fish_xiph_org.png
#usr/share/doc/libvorbis-1.3.7/floor1_inverse_dB_table.html
#usr/share/doc/libvorbis-1.3.7/floorval.png
#usr/share/doc/libvorbis-1.3.7/fourphase.png
#usr/share/doc/libvorbis-1.3.7/framing.html
#usr/share/doc/libvorbis-1.3.7/helper.html
#usr/share/doc/libvorbis-1.3.7/index.html
#usr/share/doc/libvorbis-1.3.7/libvorbis
#usr/share/doc/libvorbis-1.3.7/libvorbis/index.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/overview.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/reference.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/return.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/style.css
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_analysis.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_analysis_blockout.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_analysis_buffer.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_analysis_headerout.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_analysis_init.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_analysis_wrote.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_bitrate_addblock.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_bitrate_flushpacket.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_block.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_block_clear.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_block_init.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment_add.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment_add_tag.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment_clear.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment_init.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment_query.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_comment_query_count.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_commentheader_out.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_dsp_clear.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_dsp_state.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_granule_time.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_info.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_info_blocksize.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_info_clear.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_info_init.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_packet_blocksize.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_blockin.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_halfrate.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_halfrate_p.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_headerin.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_idheader.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_init.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_lapout.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_pcmout.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_read.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_restart.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_synthesis_trackonly.html
#usr/share/doc/libvorbis-1.3.7/libvorbis/vorbis_version_string.html
#usr/share/doc/libvorbis-1.3.7/oggstream.html
#usr/share/doc/libvorbis-1.3.7/programming.html
#usr/share/doc/libvorbis-1.3.7/rfc5215.txt
#usr/share/doc/libvorbis-1.3.7/rfc5215.xml
#usr/share/doc/libvorbis-1.3.7/squarepolar.png
#usr/share/doc/libvorbis-1.3.7/stereo.html
#usr/share/doc/libvorbis-1.3.7/stream.png
#usr/share/doc/libvorbis-1.3.7/v-comment.html
#usr/share/doc/libvorbis-1.3.7/vorbis-clip.txt
#usr/share/doc/libvorbis-1.3.7/vorbis-errors.txt
#usr/share/doc/libvorbis-1.3.7/vorbis-fidelity.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc
#usr/share/doc/libvorbis-1.3.7/vorbisenc/changes.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/examples.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/index.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/ovectl_ratemanage2_arg.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/ovectl_ratemanage_arg.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/overview.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/reference.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/style.css
#usr/share/doc/libvorbis-1.3.7/vorbisenc/vorbis_encode_ctl.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/vorbis_encode_init.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/vorbis_encode_init_vbr.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/vorbis_encode_setup_init.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/vorbis_encode_setup_managed.html
#usr/share/doc/libvorbis-1.3.7/vorbisenc/vorbis_encode_setup_vbr.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile
#usr/share/doc/libvorbis-1.3.7/vorbisfile/OggVorbis_File.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/callbacks.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/chaining_example_c.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/chainingexample.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/crosslap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/datastructures.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/decoding.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/example.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/exampleindex.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/fileinfo.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/index.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/initialization.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_bitrate.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_bitrate_instant.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_callbacks.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_clear.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_comment.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_crosslap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_fopen.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_info.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_open.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_open_callbacks.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_pcm_seek.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_pcm_seek_lap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_pcm_seek_page.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_pcm_seek_page_lap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_pcm_tell.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_pcm_total.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_raw_seek.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_raw_seek_lap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_raw_tell.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_raw_total.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_read.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_read_filter.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_read_float.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_seekable.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_serialnumber.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_streams.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_test.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_test_callbacks.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_test_open.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_time_seek.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_time_seek_lap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_time_seek_page.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_time_seek_page_lap.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_time_tell.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/ov_time_total.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/overview.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/reference.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/seekexample.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/seeking.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/seeking_example_c.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/seeking_test_c.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/seekingexample.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/style.css
#usr/share/doc/libvorbis-1.3.7/vorbisfile/threads.html
#usr/share/doc/libvorbis-1.3.7/vorbisfile/vorbisfile_example_c.html

View File

@@ -1,10 +1,10 @@
#usr/lib/python3.10/site-packages/botocore
#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info
#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/PKG-INFO
#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/SOURCES.txt
#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/dependency_links.txt
#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/requires.txt
#usr/lib/python3.10/site-packages/botocore-1.24.37-py3.10.egg-info/top_level.txt
#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info
#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/PKG-INFO
#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/SOURCES.txt
#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/dependency_links.txt
#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/requires.txt
#usr/lib/python3.10/site-packages/botocore-1.25.12-py3.10.egg-info/top_level.txt
usr/lib/python3.10/site-packages/botocore/__init__.py
usr/lib/python3.10/site-packages/botocore/args.py
usr/lib/python3.10/site-packages/botocore/auth.py
@@ -183,6 +183,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20/paginators-1.json
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-identity/2021-04-20/service-2.json
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15/paginators-1.json
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-media-pipelines/2021-07-15/service-2.json
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15
#usr/lib/python3.10/site-packages/botocore/data/chime-sdk-meetings/2021-07-15/paginators-1.json
@@ -202,6 +206,7 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/paginators-1.json
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/paginators-1.sdk-extras.json
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/service-2.json
#usr/lib/python3.10/site-packages/botocore/data/cloudcontrol/2021-09-30/waiters-2.json
#usr/lib/python3.10/site-packages/botocore/data/clouddirectory
@@ -848,6 +853,10 @@ usr/lib/python3.10/site-packages/botocore/crt/auth.py
#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14
#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/paginators-1.json
#usr/lib/python3.10/site-packages/botocore/data/ivs/2020-07-14/service-2.json
#usr/lib/python3.10/site-packages/botocore/data/ivschat
#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14
#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/paginators-1.json
#usr/lib/python3.10/site-packages/botocore/data/ivschat/2020-07-14/service-2.json
#usr/lib/python3.10/site-packages/botocore/data/kafka
#usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14
#usr/lib/python3.10/site-packages/botocore/data/kafka/2018-11-14/paginators-1.json

View File

@@ -77,13 +77,6 @@ MENU BEGIN tools
Diagnose memory problems with memtest86+.
ENDTEXT
KERNEL memtest
LABEL hdt
MENU LABEL Hardware Detection Tool
TEXT HELP
Check your hardware with the Hardware Detection Tool!
ENDTEXT
KERNEL hdt.c32
MENU END
MENU BEGIN serial
@@ -122,14 +115,6 @@ Diagnose memory problems with memtest86+ with serial console.
ENDTEXT
KERNEL memtest
APPEND console=ttyS0,115200
LABEL hdt-serial
MENU LABEL Hardware Detection Tool
TEXT HELP
Check your hardware with the Hardware Detection Tool!
ENDTEXT
KERNEL hdt.c32
MENU END
MENU SEPARATOR

View File

@@ -1,23 +1,26 @@
Standard use commands in the order you may need them.
downloadsrc : preload all necessary files in cache before compilation
build : compile the distribution
clean : erase build and log to recompile everything from scratch
make.sh - Build and maintain programs and libraries for IPFire source code
Optional
gettoolchain : optionally load from ipfire.org a precompilated toolchain
package. This solve some compilation issues on old or very
recent distributions and save 20% of next full building time.
If you want to use it, do it before build step
Standard commands:
downloadsrc Preload all necessary files in cache before compilation
gettoolchain Optionally load a precompilated toolchain (20% less build time)
build Compile distribution
clean Erase build and log directories to recompile all from scratch
Maintainer / advanced commands
toolchain : Create our own toolchain package to save 20% of build time.
shell : Enter a shell inside the chroot, used to tune lfs script
and / or during kernel upgrade to rebuild a new .config
Maintainer and advanced commands:
check-manualpages Check the manual pages for broken links
docker Build a docker image
find-dependencies Confirm needed libraries are included in build
lang Check translations for missing or obsolete strings
shell Enter a shell inside the chroot. Used to tune lfs script
and/or during kernel upgrade to rebuild new .config file
toolchain Create toolchain package (if not downloaded via `make gettoolchain`)
update-contributors Update list of contributors
uploadsrc For core developers only to upload source code
OPTIONS:
--target=[aarch64|armv6l|armv7hl|riscv64|x86_64]
Cross-compile for this target architecture. Uses the QEMU
emulator if needed to virtualise the desired target
architecture. Can be permanently set with
TARGET_ARCH= in .config file.
Options:
--target=[aarch64|armv5tel|i586] : Cross-compile for this target architecture.
Uses the QEMU emulator if needed to virtualise
the desired target architecture.
Can be permanently set with TARGET_ARCH= in
.config.

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