Merge branch 'next'

This commit is contained in:
Michael Tremer
2023-08-17 13:55:52 +00:00
219 changed files with 10811 additions and 4388 deletions

View File

@@ -1,2 +1,3 @@
/etc/monitrc
/etc/monit.d
/var/lib/monit/id

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +1,8 @@
#!/usr/bin/perl
#!/bin/bash
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2010 IPFire Team <info@ipfire.org> #
# Copyright (C) 2023 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 #
@@ -19,75 +19,115 @@
# #
###############################################################################
use strict;
# enable only the following on debugging purpose
# use warnings;
log() {
local message="${@}"
require '/var/ipfire/general-functions.pl';
require "${General::swroot}/lang.pl";
require "${General::swroot}/header.pl";
my %extrahdsettings = ();
my $ok = "true";
my @devices = ();
my @deviceline = ();
my $deviceentry = "";
my $devicefile = "/var/ipfire/extrahd/devices";
my $fstab = "/var/ipfire/extrahd/fstab";
### Values that have to be initialized
$extrahdsettings{'PATH'} = '';
$extrahdsettings{'FS'} = '';
$extrahdsettings{'DEVICE'} = '';
$extrahdsettings{'ACTION'} = '';
open( FILE, "< $devicefile" ) or die "Unable to read $devicefile";
@devices = <FILE>;
close FILE;
############################################################################################################################
############################################################################################################################
if ( "$ARGV[0]" eq "mount" ) {
system("/bin/cp -f /etc/fstab $fstab");
foreach $deviceentry (sort @devices)
{
@deviceline = split( /\;/, $deviceentry );
if ( "$ARGV[1]" eq "$deviceline[2]" ) {
print "Insert $deviceline[0] ($deviceline[1]) --> $deviceline[2] into /etc/fstab!\n";
unless ( -d $deviceline[2] ) { system("/bin/mkdir -p $deviceline[2] && chmod 0777 $deviceline[2]"); }
open(FILE, ">>$fstab");
print FILE "$deviceline[0]\t$deviceline[2]\t$deviceline[1]\tdefaults\t0\t0\n";
close(FILE);
}
}
system("/bin/cp -f $fstab /etc/fstab");
if ( `/bin/mount -a` ) {
exit(0);
} else {
exit(1);
}
} elsif ( "$ARGV[0]" eq "umount" ) {
system("/bin/umount $ARGV[1]");
if ( ! `/bin/mount | /bin/fgrep $ARGV[1]` ) {
system("/bin/cp -f /etc/fstab $fstab");
system("/bin/fgrep -v $ARGV[1] <$fstab >/etc/fstab");
print "Successfully umounted $ARGV[1].\n";
exit(0);
} else {
print "Can't umount $ARGV[1].\n";
exit(1);
}
} elsif ( "$ARGV[0]" eq "scanhd") {
system("/usr/local/bin/scanhd $ARGV[1]");
} else {
print "Usage: $0 (mount|umount|scanhd) mountpoint\n";
logger -t "extrahd" "${message}"
}
############################################################################################################################
############################################################################################################################
extrahd_mount() {
local _mountpoint="${1}"
local device
local filesystem
local mountpoint
local rest
local failed=0
while IFS=';' read -r device filesystem mountpoint rest; do
# Filter by mountpoint if set
if [ -n "${_mountpoint}" ] && [ "${mountpoint}" != "${_mountpoint}" ]; then
continue
fi
# Check that the mountpoint starts with a slash
if [ "${mountpoint:0:1}" != "/" ]; then
log "Skipping invalid mountpoint: ${mountpoint}"
continue
fi
# Skip mounting if something is already mounted at the mountpoint
if mountpoint "${mountpoint}" &>/dev/null; then
continue
fi
# Ensure the mountpoint exists
mkdir --parents --mode=777 "${mountpoint}" &>/dev/null
if mount --types "${filesystem}" "${device}" "${mountpoint}"; then
log "Successfully mounted ${device} to ${mountpoint}"
else
log "Could not mount ${device} to ${mountpoint}: $?"
failed=1
fi
done < /var/ipfire/extrahd/devices
return ${failed}
}
extrahd_umount() {
local _mountpoint="${1}"
local device
local filesystem
local mountpoint
local rest
local failed=0
while IFS=';' read -r device filesystem mountpoint rest; do
# Filter by mountpoint if set
if [ -n "${_mountpoint}" ] && [ "${mountpoint}" != "${_mountpoint}" ]; then
continue
fi
# Do not try to umount if nothing is mounted
if ! mountpoint "${mountpoint}" &>/dev/null; then
continue
fi
# Umount and try lazy umount if failed
if umount --quiet --recursive "${mountpoint}" || \
umount --quiet --recursive --lazy "${mountpoint}"; then
log "Successfully umounted ${device} from ${mountpoint}"
else
log "Could not umount ${device} from ${mountpoint}: $?"
failed=1
fi
done < /var/ipfire/extrahd/devices
}
main() {
local command="${1}"
shift
local rc=0
case "${command}" in
mount)
extrahd_mount "${@}" || rc="${?}"
;;
umount)
extrahd_umount "${@}" || rc="${rc}"
;;
scanhd)
exec /usr/local/bin/scanhd "${@}"
;;
# No command
"")
echo "${0}: No command given" >&2
rc=2
;;
# Unknown command
*)
echo "${0}: Unsupported command: ${command}" >&2
rc=2
;;
esac
return ${rc}
}
# Call main()
main "${@}" || exit ${?}

View File

@@ -731,7 +731,7 @@ sort_order = $TRACK
# the installation script - if this doesn't happen report this as
# a bug.
#
plugin_directory = /usr/lib/perl5/5.32.1/gnump3d/plugins
plugin_directory = /usr/lib/perl5/5.36.0/gnump3d/plugins
#

View File

@@ -1,15 +1,15 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/riscv 6.1.7 Kernel Configuration
# Linux/riscv 6.1.42-ipfire Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.3.0"
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.1.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=110300
CONFIG_GCC_VERSION=130100
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=23900
CONFIG_AS_VERSION=24000
CONFIG_LD_IS_BFD=y
CONFIG_LD_VERSION=23900
CONFIG_LD_VERSION=24000
CONFIG_LLD_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
@@ -157,7 +157,6 @@ CONFIG_GENERIC_SCHED_CLOCK=y
CONFIG_CC_HAS_INT128=y
CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5"
CONFIG_GCC11_NO_ARRAY_BOUNDS=y
CONFIG_GCC12_NO_ARRAY_BOUNDS=y
CONFIG_CC_NO_ARRAY_BOUNDS=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_CGROUPS=y
@@ -316,6 +315,7 @@ CONFIG_RISCV_ISA_SVPBMT=y
CONFIG_TOOLCHAIN_HAS_ZICBOM=y
CONFIG_RISCV_ISA_ZICBOM=y
CONFIG_TOOLCHAIN_HAS_ZIHINTPAUSE=y
CONFIG_TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI=y
CONFIG_FPU=y
# end of Platform type
@@ -466,7 +466,7 @@ CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
CONFIG_HAVE_GCC_PLUGINS=y
CONFIG_GCC_PLUGINS=y
CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y
# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set
# end of General architecture-dependent options
CONFIG_RT_MUTEXES=y
@@ -576,6 +576,7 @@ CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_ARCH_HAS_MMIOWB=y
CONFIG_MMIOWB=y
CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
CONFIG_FREEZER=y
#
@@ -658,6 +659,7 @@ CONFIG_ARCH_HAS_PTE_SPECIAL=y
# CONFIG_ANON_VMA_NAME is not set
# CONFIG_USERFAULTFD is not set
# CONFIG_LRU_GEN is not set
CONFIG_LOCK_MM_AND_FIND_VMA=y
#
# Data Access Monitoring
@@ -1240,7 +1242,6 @@ CONFIG_DEFAULT_NET_SCH="fq_codel"
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
CONFIG_NET_CLS_TCINDEX=m
CONFIG_NET_CLS_ROUTE4=m
CONFIG_NET_CLS_FW=m
CONFIG_NET_CLS_U32=m
@@ -3106,7 +3107,6 @@ CONFIG_SERIAL_ARC_NR_PORTS=1
CONFIG_SERIAL_RP2=m
CONFIG_SERIAL_RP2_NR_UARTS=32
CONFIG_SERIAL_FSL_LPUART=m
CONFIG_SERIAL_FSL_LPUART_CONSOLE=y
CONFIG_SERIAL_FSL_LINFLEXUART=m
# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
CONFIG_SERIAL_SPRD=m
@@ -3604,8 +3604,6 @@ CONFIG_SENSORS_LM95245=m
CONFIG_SENSORS_PC87360=m
CONFIG_SENSORS_PC87427=m
CONFIG_SENSORS_NCT6683=m
CONFIG_SENSORS_NCT6775_CORE=m
CONFIG_SENSORS_NCT6775=m
# CONFIG_SENSORS_NCT6775_I2C is not set
CONFIG_SENSORS_NCT7802=m
CONFIG_SENSORS_NCT7904=m
@@ -4743,7 +4741,6 @@ CONFIG_DVB_SP2=m
#
CONFIG_APERTURE_HELPERS=y
CONFIG_DRM=m
CONFIG_DRM_USE_DYNAMIC_DEBUG=y
CONFIG_DRM_KMS_HELPER=m
# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
CONFIG_DRM_DEBUG_MODESET_LOCK=y
@@ -4879,8 +4876,6 @@ CONFIG_DRM_ANALOGIX_DP=m
# CONFIG_DRM_ETNAVIV is not set
# CONFIG_DRM_LOGICVC is not set
# CONFIG_DRM_MXSFB is not set
# CONFIG_DRM_IMX_LCDIF is not set
# CONFIG_DRM_ARCPGU is not set
CONFIG_DRM_BOCHS=m
CONFIG_DRM_CIRRUS_QEMU=m
@@ -5160,6 +5155,7 @@ CONFIG_SND_HDA_CODEC_SI3054=m
CONFIG_SND_HDA_GENERIC=m
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set
# CONFIG_SND_HDA_CTL_DEV_ID is not set
# end of HD-Audio
CONFIG_SND_HDA_CORE=m
@@ -6422,7 +6418,7 @@ CONFIG_CIFS_FSCACHE=y
CONFIG_SMB_SERVER=m
CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=y
CONFIG_SMB_SERVER_KERBEROS5=y
CONFIG_SMBFS_COMMON=m
CONFIG_SMBFS=m
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_NLS=y
@@ -6523,16 +6519,16 @@ CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,bpf"
#
# Kernel hardening options
#
CONFIG_GCC_PLUGIN_STRUCTLEAK=y
#
# Memory initialization
#
CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN=y
CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE=y
CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO=y
# CONFIG_INIT_STACK_NONE is not set
# CONFIG_GCC_PLUGIN_STRUCTLEAK_USER is not set
# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF is not set
CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y
# CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE is not set
# CONFIG_INIT_STACK_ALL_PATTERN is not set
CONFIG_INIT_STACK_ALL_ZERO=y
CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y

View File

@@ -183,6 +183,7 @@ usr/lib/libcurl.so.4.8.0
#usr/share/man/man3/CURLOPT_GSSAPI_DELEGATION.3
#usr/share/man/man3/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3
#usr/share/man/man3/CURLOPT_HAPROXYPROTOCOL.3
#usr/share/man/man3/CURLOPT_HAPROXY_CLIENT_IP.3
#usr/share/man/man3/CURLOPT_HEADER.3
#usr/share/man/man3/CURLOPT_HEADERDATA.3
#usr/share/man/man3/CURLOPT_HEADERFUNCTION.3
@@ -225,7 +226,7 @@ usr/lib/libcurl.so.4.8.0
#usr/share/man/man3/CURLOPT_MAIL_AUTH.3
#usr/share/man/man3/CURLOPT_MAIL_FROM.3
#usr/share/man/man3/CURLOPT_MAIL_RCPT.3
#usr/share/man/man3/CURLOPT_MAIL_RCPT_ALLLOWFAILS.3
#usr/share/man/man3/CURLOPT_MAIL_RCPT_ALLOWFAILS.3
#usr/share/man/man3/CURLOPT_MAXAGE_CONN.3
#usr/share/man/man3/CURLOPT_MAXCONNECTS.3
#usr/share/man/man3/CURLOPT_MAXFILESIZE.3
@@ -471,6 +472,8 @@ usr/lib/libcurl.so.4.8.0
#usr/share/man/man3/curl_multi_timeout.3
#usr/share/man/man3/curl_multi_wait.3
#usr/share/man/man3/curl_multi_wakeup.3
#usr/share/man/man3/curl_pushheader_byname.3
#usr/share/man/man3/curl_pushheader_bynum.3
#usr/share/man/man3/curl_share_cleanup.3
#usr/share/man/man3/curl_share_init.3
#usr/share/man/man3/curl_share_setopt.3
@@ -501,4 +504,5 @@ usr/lib/libcurl.so.4.8.0
#usr/share/man/man3/libcurl-thread.3
#usr/share/man/man3/libcurl-tutorial.3
#usr/share/man/man3/libcurl-url.3
#usr/share/man/man3/libcurl-ws.3
#usr/share/man/man3/libcurl.3

View File

@@ -10,9 +10,10 @@ usr/bin/fusermount3
#usr/include/fuse3/fuse_log.h
#usr/include/fuse3/fuse_lowlevel.h
#usr/include/fuse3/fuse_opt.h
#usr/include/fuse3/libfuse_config.h
#usr/lib/libfuse3.so
usr/lib/libfuse3.so.3
usr/lib/libfuse3.so.3.13.0
usr/lib/libfuse3.so.3.15.0
#usr/lib/pkgconfig/fuse3.pc
#usr/share/man/man1/fusermount3.1
#usr/share/man/man8/mount.fuse3.8

View File

@@ -38,23 +38,24 @@ usr/bin/gettext.sh
#usr/lib/libasprintf.so
usr/lib/libasprintf.so.0
usr/lib/libasprintf.so.0.0.0
usr/lib/libgettextlib-0.21.so
usr/lib/libgettextlib-0.22.so
#usr/lib/libgettextlib.la
#usr/lib/libgettextlib.so
#usr/lib/libgettextpo.a
#usr/lib/libgettextpo.la
#usr/lib/libgettextpo.so
usr/lib/libgettextpo.so.0
usr/lib/libgettextpo.so.0.5.7
usr/lib/libgettextsrc-0.21.so
usr/lib/libgettextpo.so.0.5.9
usr/lib/libgettextsrc-0.22.so
#usr/lib/libgettextsrc.la
usr/lib/libgettextsrc.so
#usr/lib/libtextstyle.a
#usr/lib/libtextstyle.la
#usr/lib/libtextstyle.so
usr/lib/libtextstyle.so.0
usr/lib/libtextstyle.so.0.1.1
usr/lib/libtextstyle.so.0.2.0
usr/lib/preloadable_libintl.so
#usr/share/aclocal/build-to-host.m4
#usr/share/aclocal/gettext.m4
#usr/share/aclocal/host-cpu-c-abi.m4
#usr/share/aclocal/iconv.m4
@@ -129,6 +130,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c++-gnome/po/id.po
#usr/share/doc/gettext/examples/hello-c++-gnome/po/it.po
#usr/share/doc/gettext/examples/hello-c++-gnome/po/ja.po
#usr/share/doc/gettext/examples/hello-c++-gnome/po/ka.po
#usr/share/doc/gettext/examples/hello-c++-gnome/po/ky.po
#usr/share/doc/gettext/examples/hello-c++-gnome/po/lv.po
#usr/share/doc/gettext/examples/hello-c++-gnome/po/ms.po
@@ -213,6 +215,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c++-kde/po/id.po
#usr/share/doc/gettext/examples/hello-c++-kde/po/it.po
#usr/share/doc/gettext/examples/hello-c++-kde/po/ja.po
#usr/share/doc/gettext/examples/hello-c++-kde/po/ka.po
#usr/share/doc/gettext/examples/hello-c++-kde/po/ky.po
#usr/share/doc/gettext/examples/hello-c++-kde/po/lv.po
#usr/share/doc/gettext/examples/hello-c++-kde/po/ms.po
@@ -270,6 +273,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c++-qt/po/id.po
#usr/share/doc/gettext/examples/hello-c++-qt/po/it.po
#usr/share/doc/gettext/examples/hello-c++-qt/po/ja.po
#usr/share/doc/gettext/examples/hello-c++-qt/po/ka.po
#usr/share/doc/gettext/examples/hello-c++-qt/po/ky.po
#usr/share/doc/gettext/examples/hello-c++-qt/po/lv.po
#usr/share/doc/gettext/examples/hello-c++-qt/po/ms.po
@@ -326,6 +330,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/id.po
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/it.po
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/ja.po
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/ka.po
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/ky.po
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/lv.po
#usr/share/doc/gettext/examples/hello-c++-wxwidgets/po/ms.po
@@ -381,6 +386,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c++/po/id.po
#usr/share/doc/gettext/examples/hello-c++/po/it.po
#usr/share/doc/gettext/examples/hello-c++/po/ja.po
#usr/share/doc/gettext/examples/hello-c++/po/ka.po
#usr/share/doc/gettext/examples/hello-c++/po/ky.po
#usr/share/doc/gettext/examples/hello-c++/po/lv.po
#usr/share/doc/gettext/examples/hello-c++/po/ms.po
@@ -405,6 +411,63 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c++/po/zh_CN.po
#usr/share/doc/gettext/examples/hello-c++/po/zh_HK.po
#usr/share/doc/gettext/examples/hello-c++/po/zh_TW.po
#usr/share/doc/gettext/examples/hello-c++20
#usr/share/doc/gettext/examples/hello-c++20/INSTALL
#usr/share/doc/gettext/examples/hello-c++20/Makefile.am
#usr/share/doc/gettext/examples/hello-c++20/autoclean.sh
#usr/share/doc/gettext/examples/hello-c++20/autogen.sh
#usr/share/doc/gettext/examples/hello-c++20/configure.ac
#usr/share/doc/gettext/examples/hello-c++20/hello.cc
#usr/share/doc/gettext/examples/hello-c++20/m4
#usr/share/doc/gettext/examples/hello-c++20/m4/Makefile.am
#usr/share/doc/gettext/examples/hello-c++20/po
#usr/share/doc/gettext/examples/hello-c++20/po/LINGUAS
#usr/share/doc/gettext/examples/hello-c++20/po/Makevars
#usr/share/doc/gettext/examples/hello-c++20/po/POTFILES.in
#usr/share/doc/gettext/examples/hello-c++20/po/af.po
#usr/share/doc/gettext/examples/hello-c++20/po/ast.po
#usr/share/doc/gettext/examples/hello-c++20/po/bg.po
#usr/share/doc/gettext/examples/hello-c++20/po/ca.po
#usr/share/doc/gettext/examples/hello-c++20/po/cs.po
#usr/share/doc/gettext/examples/hello-c++20/po/da.po
#usr/share/doc/gettext/examples/hello-c++20/po/de.po
#usr/share/doc/gettext/examples/hello-c++20/po/el.po
#usr/share/doc/gettext/examples/hello-c++20/po/eo.po
#usr/share/doc/gettext/examples/hello-c++20/po/es.po
#usr/share/doc/gettext/examples/hello-c++20/po/fi.po
#usr/share/doc/gettext/examples/hello-c++20/po/fr.po
#usr/share/doc/gettext/examples/hello-c++20/po/ga.po
#usr/share/doc/gettext/examples/hello-c++20/po/gl.po
#usr/share/doc/gettext/examples/hello-c++20/po/hr.po
#usr/share/doc/gettext/examples/hello-c++20/po/hu.po
#usr/share/doc/gettext/examples/hello-c++20/po/id.po
#usr/share/doc/gettext/examples/hello-c++20/po/it.po
#usr/share/doc/gettext/examples/hello-c++20/po/ja.po
#usr/share/doc/gettext/examples/hello-c++20/po/ka.po
#usr/share/doc/gettext/examples/hello-c++20/po/ky.po
#usr/share/doc/gettext/examples/hello-c++20/po/lv.po
#usr/share/doc/gettext/examples/hello-c++20/po/ms.po
#usr/share/doc/gettext/examples/hello-c++20/po/mt.po
#usr/share/doc/gettext/examples/hello-c++20/po/nb.po
#usr/share/doc/gettext/examples/hello-c++20/po/nl.po
#usr/share/doc/gettext/examples/hello-c++20/po/nn.po
#usr/share/doc/gettext/examples/hello-c++20/po/pl.po
#usr/share/doc/gettext/examples/hello-c++20/po/pt.po
#usr/share/doc/gettext/examples/hello-c++20/po/pt_BR.po
#usr/share/doc/gettext/examples/hello-c++20/po/ro.po
#usr/share/doc/gettext/examples/hello-c++20/po/ru.po
#usr/share/doc/gettext/examples/hello-c++20/po/sk.po
#usr/share/doc/gettext/examples/hello-c++20/po/sl.po
#usr/share/doc/gettext/examples/hello-c++20/po/sq.po
#usr/share/doc/gettext/examples/hello-c++20/po/sr.po
#usr/share/doc/gettext/examples/hello-c++20/po/sv.po
#usr/share/doc/gettext/examples/hello-c++20/po/ta.po
#usr/share/doc/gettext/examples/hello-c++20/po/tr.po
#usr/share/doc/gettext/examples/hello-c++20/po/uk.po
#usr/share/doc/gettext/examples/hello-c++20/po/vi.po
#usr/share/doc/gettext/examples/hello-c++20/po/zh_CN.po
#usr/share/doc/gettext/examples/hello-c++20/po/zh_HK.po
#usr/share/doc/gettext/examples/hello-c++20/po/zh_TW.po
#usr/share/doc/gettext/examples/hello-c-gnome
#usr/share/doc/gettext/examples/hello-c-gnome/INSTALL
#usr/share/doc/gettext/examples/hello-c-gnome/Makefile.am
@@ -440,6 +503,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c-gnome/po/id.po
#usr/share/doc/gettext/examples/hello-c-gnome/po/it.po
#usr/share/doc/gettext/examples/hello-c-gnome/po/ja.po
#usr/share/doc/gettext/examples/hello-c-gnome/po/ka.po
#usr/share/doc/gettext/examples/hello-c-gnome/po/ky.po
#usr/share/doc/gettext/examples/hello-c-gnome/po/lv.po
#usr/share/doc/gettext/examples/hello-c-gnome/po/ms.po
@@ -500,6 +564,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c-gnome3/po/id.po
#usr/share/doc/gettext/examples/hello-c-gnome3/po/it.po
#usr/share/doc/gettext/examples/hello-c-gnome3/po/ja.po
#usr/share/doc/gettext/examples/hello-c-gnome3/po/ka.po
#usr/share/doc/gettext/examples/hello-c-gnome3/po/ky.po
#usr/share/doc/gettext/examples/hello-c-gnome3/po/lv.po
#usr/share/doc/gettext/examples/hello-c-gnome3/po/ms.po
@@ -555,6 +620,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-c/po/id.po
#usr/share/doc/gettext/examples/hello-c/po/it.po
#usr/share/doc/gettext/examples/hello-c/po/ja.po
#usr/share/doc/gettext/examples/hello-c/po/ka.po
#usr/share/doc/gettext/examples/hello-c/po/ky.po
#usr/share/doc/gettext/examples/hello-c/po/lv.po
#usr/share/doc/gettext/examples/hello-c/po/ms.po
@@ -610,6 +676,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-clisp/po/id.po
#usr/share/doc/gettext/examples/hello-clisp/po/it.po
#usr/share/doc/gettext/examples/hello-clisp/po/ja.po
#usr/share/doc/gettext/examples/hello-clisp/po/ka.po
#usr/share/doc/gettext/examples/hello-clisp/po/ky.po
#usr/share/doc/gettext/examples/hello-clisp/po/lv.po
#usr/share/doc/gettext/examples/hello-clisp/po/ms.po
@@ -667,6 +734,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-csharp-forms/po/id.po
#usr/share/doc/gettext/examples/hello-csharp-forms/po/it.po
#usr/share/doc/gettext/examples/hello-csharp-forms/po/ja.po
#usr/share/doc/gettext/examples/hello-csharp-forms/po/ka.po
#usr/share/doc/gettext/examples/hello-csharp-forms/po/ky.po
#usr/share/doc/gettext/examples/hello-csharp-forms/po/lv.po
#usr/share/doc/gettext/examples/hello-csharp-forms/po/ms.po
@@ -721,6 +789,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-csharp/po/id.po
#usr/share/doc/gettext/examples/hello-csharp/po/it.po
#usr/share/doc/gettext/examples/hello-csharp/po/ja.po
#usr/share/doc/gettext/examples/hello-csharp/po/ka.po
#usr/share/doc/gettext/examples/hello-csharp/po/ky.po
#usr/share/doc/gettext/examples/hello-csharp/po/lv.po
#usr/share/doc/gettext/examples/hello-csharp/po/ms.po
@@ -776,6 +845,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-gawk/po/id.po
#usr/share/doc/gettext/examples/hello-gawk/po/it.po
#usr/share/doc/gettext/examples/hello-gawk/po/ja.po
#usr/share/doc/gettext/examples/hello-gawk/po/ka.po
#usr/share/doc/gettext/examples/hello-gawk/po/ky.po
#usr/share/doc/gettext/examples/hello-gawk/po/lv.po
#usr/share/doc/gettext/examples/hello-gawk/po/ms.po
@@ -831,6 +901,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-guile/po/id.po
#usr/share/doc/gettext/examples/hello-guile/po/it.po
#usr/share/doc/gettext/examples/hello-guile/po/ja.po
#usr/share/doc/gettext/examples/hello-guile/po/ka.po
#usr/share/doc/gettext/examples/hello-guile/po/ky.po
#usr/share/doc/gettext/examples/hello-guile/po/lv.po
#usr/share/doc/gettext/examples/hello-guile/po/ms.po
@@ -890,6 +961,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-java-awt/po/id.po
#usr/share/doc/gettext/examples/hello-java-awt/po/it.po
#usr/share/doc/gettext/examples/hello-java-awt/po/ja.po
#usr/share/doc/gettext/examples/hello-java-awt/po/ka.po
#usr/share/doc/gettext/examples/hello-java-awt/po/ky.po
#usr/share/doc/gettext/examples/hello-java-awt/po/lv.po
#usr/share/doc/gettext/examples/hello-java-awt/po/ms.po
@@ -948,6 +1020,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/id.po
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/it.po
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/ja.po
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/ka.po
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/ky.po
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/lv.po
#usr/share/doc/gettext/examples/hello-java-qtjambi/po/ms.po
@@ -1006,6 +1079,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-java-swing/po/id.po
#usr/share/doc/gettext/examples/hello-java-swing/po/it.po
#usr/share/doc/gettext/examples/hello-java-swing/po/ja.po
#usr/share/doc/gettext/examples/hello-java-swing/po/ka.po
#usr/share/doc/gettext/examples/hello-java-swing/po/ky.po
#usr/share/doc/gettext/examples/hello-java-swing/po/lv.po
#usr/share/doc/gettext/examples/hello-java-swing/po/ms.po
@@ -1060,6 +1134,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-java/po/id.po
#usr/share/doc/gettext/examples/hello-java/po/it.po
#usr/share/doc/gettext/examples/hello-java/po/ja.po
#usr/share/doc/gettext/examples/hello-java/po/ka.po
#usr/share/doc/gettext/examples/hello-java/po/ky.po
#usr/share/doc/gettext/examples/hello-java/po/lv.po
#usr/share/doc/gettext/examples/hello-java/po/ms.po
@@ -1115,6 +1190,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-librep/po/id.po
#usr/share/doc/gettext/examples/hello-librep/po/it.po
#usr/share/doc/gettext/examples/hello-librep/po/ja.po
#usr/share/doc/gettext/examples/hello-librep/po/ka.po
#usr/share/doc/gettext/examples/hello-librep/po/ky.po
#usr/share/doc/gettext/examples/hello-librep/po/lv.po
#usr/share/doc/gettext/examples/hello-librep/po/ms.po
@@ -1175,6 +1251,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-objc-gnome/po/id.po
#usr/share/doc/gettext/examples/hello-objc-gnome/po/it.po
#usr/share/doc/gettext/examples/hello-objc-gnome/po/ja.po
#usr/share/doc/gettext/examples/hello-objc-gnome/po/ka.po
#usr/share/doc/gettext/examples/hello-objc-gnome/po/ky.po
#usr/share/doc/gettext/examples/hello-objc-gnome/po/lv.po
#usr/share/doc/gettext/examples/hello-objc-gnome/po/ms.po
@@ -1233,6 +1310,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/id.po
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/it.po
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/ja.po
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/ka.po
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/ky.po
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/lv.po
#usr/share/doc/gettext/examples/hello-objc-gnustep/po/ms.po
@@ -1288,6 +1366,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-objc/po/id.po
#usr/share/doc/gettext/examples/hello-objc/po/it.po
#usr/share/doc/gettext/examples/hello-objc/po/ja.po
#usr/share/doc/gettext/examples/hello-objc/po/ka.po
#usr/share/doc/gettext/examples/hello-objc/po/ky.po
#usr/share/doc/gettext/examples/hello-objc/po/lv.po
#usr/share/doc/gettext/examples/hello-objc/po/ms.po
@@ -1343,6 +1422,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-pascal/po/id.po
#usr/share/doc/gettext/examples/hello-pascal/po/it.po
#usr/share/doc/gettext/examples/hello-pascal/po/ja.po
#usr/share/doc/gettext/examples/hello-pascal/po/ka.po
#usr/share/doc/gettext/examples/hello-pascal/po/ky.po
#usr/share/doc/gettext/examples/hello-pascal/po/lv.po
#usr/share/doc/gettext/examples/hello-pascal/po/ms.po
@@ -1399,6 +1479,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-perl/po/id.po
#usr/share/doc/gettext/examples/hello-perl/po/it.po
#usr/share/doc/gettext/examples/hello-perl/po/ja.po
#usr/share/doc/gettext/examples/hello-perl/po/ka.po
#usr/share/doc/gettext/examples/hello-perl/po/ky.po
#usr/share/doc/gettext/examples/hello-perl/po/lv.po
#usr/share/doc/gettext/examples/hello-perl/po/ms.po
@@ -1455,6 +1536,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-php/po/id.po
#usr/share/doc/gettext/examples/hello-php/po/it.po
#usr/share/doc/gettext/examples/hello-php/po/ja.po
#usr/share/doc/gettext/examples/hello-php/po/ka.po
#usr/share/doc/gettext/examples/hello-php/po/ky.po
#usr/share/doc/gettext/examples/hello-php/po/lv.po
#usr/share/doc/gettext/examples/hello-php/po/ms.po
@@ -1510,6 +1592,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-python/po/id.po
#usr/share/doc/gettext/examples/hello-python/po/it.po
#usr/share/doc/gettext/examples/hello-python/po/ja.po
#usr/share/doc/gettext/examples/hello-python/po/ka.po
#usr/share/doc/gettext/examples/hello-python/po/ky.po
#usr/share/doc/gettext/examples/hello-python/po/lv.po
#usr/share/doc/gettext/examples/hello-python/po/ms.po
@@ -1565,6 +1648,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-sh/po/id.po
#usr/share/doc/gettext/examples/hello-sh/po/it.po
#usr/share/doc/gettext/examples/hello-sh/po/ja.po
#usr/share/doc/gettext/examples/hello-sh/po/ka.po
#usr/share/doc/gettext/examples/hello-sh/po/ky.po
#usr/share/doc/gettext/examples/hello-sh/po/lv.po
#usr/share/doc/gettext/examples/hello-sh/po/ms.po
@@ -1620,6 +1704,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-smalltalk/po/id.po
#usr/share/doc/gettext/examples/hello-smalltalk/po/it.po
#usr/share/doc/gettext/examples/hello-smalltalk/po/ja.po
#usr/share/doc/gettext/examples/hello-smalltalk/po/ka.po
#usr/share/doc/gettext/examples/hello-smalltalk/po/ky.po
#usr/share/doc/gettext/examples/hello-smalltalk/po/lv.po
#usr/share/doc/gettext/examples/hello-smalltalk/po/ms.po
@@ -1676,6 +1761,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-tcl-tk/po/id.po
#usr/share/doc/gettext/examples/hello-tcl-tk/po/it.po
#usr/share/doc/gettext/examples/hello-tcl-tk/po/ja.po
#usr/share/doc/gettext/examples/hello-tcl-tk/po/ka.po
#usr/share/doc/gettext/examples/hello-tcl-tk/po/ky.po
#usr/share/doc/gettext/examples/hello-tcl-tk/po/lv.po
#usr/share/doc/gettext/examples/hello-tcl-tk/po/ms.po
@@ -1730,6 +1816,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-tcl/po/id.po
#usr/share/doc/gettext/examples/hello-tcl/po/it.po
#usr/share/doc/gettext/examples/hello-tcl/po/ja.po
#usr/share/doc/gettext/examples/hello-tcl/po/ka.po
#usr/share/doc/gettext/examples/hello-tcl/po/ky.po
#usr/share/doc/gettext/examples/hello-tcl/po/lv.po
#usr/share/doc/gettext/examples/hello-tcl/po/ms.po
@@ -1785,6 +1872,7 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/gettext/examples/hello-ycp/po/id.po
#usr/share/doc/gettext/examples/hello-ycp/po/it.po
#usr/share/doc/gettext/examples/hello-ycp/po/ja.po
#usr/share/doc/gettext/examples/hello-ycp/po/ka.po
#usr/share/doc/gettext/examples/hello-ycp/po/ky.po
#usr/share/doc/gettext/examples/hello-ycp/po/lv.po
#usr/share/doc/gettext/examples/hello-ycp/po/ms.po
@@ -1896,16 +1984,16 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/libtextstyle/libtextstyle_abt.html
#usr/share/doc/libtextstyle/libtextstyle_toc.html
#usr/share/gettext
#usr/share/gettext-0.21
#usr/share/gettext-0.21/its
#usr/share/gettext-0.21/its/glade.loc
#usr/share/gettext-0.21/its/glade1.its
#usr/share/gettext-0.21/its/glade2.its
#usr/share/gettext-0.21/its/gsettings.its
#usr/share/gettext-0.21/its/gsettings.loc
#usr/share/gettext-0.21/its/gtkbuilder.its
#usr/share/gettext-0.21/its/metainfo.its
#usr/share/gettext-0.21/its/metainfo.loc
#usr/share/gettext-0.22
#usr/share/gettext-0.22/its
#usr/share/gettext-0.22/its/glade.loc
#usr/share/gettext-0.22/its/glade1.its
#usr/share/gettext-0.22/its/glade2.its
#usr/share/gettext-0.22/its/gsettings.its
#usr/share/gettext-0.22/its/gsettings.loc
#usr/share/gettext-0.22/its/gtkbuilder.its
#usr/share/gettext-0.22/its/metainfo.its
#usr/share/gettext-0.22/its/metainfo.loc
#usr/share/gettext/ABOUT-NLS
#usr/share/gettext/archive.dir.tar.xz
#usr/share/gettext/config.rpath

View File

@@ -17,7 +17,6 @@
#usr/include/gio-unix-2.0/gio
#usr/include/gio-unix-2.0/gio/gdesktopappinfo.h
#usr/include/gio-unix-2.0/gio/gfiledescriptorbased.h
#usr/include/gio-unix-2.0/gio/gunixfdlist.h
#usr/include/gio-unix-2.0/gio/gunixfdmessage.h
#usr/include/gio-unix-2.0/gio/gunixinputstream.h
#usr/include/gio-unix-2.0/gio/gunixmounts.h
@@ -95,6 +94,7 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/gio/ginitable.h
#usr/include/glib-2.0/gio/ginputstream.h
#usr/include/glib-2.0/gio/gio-autocleanups.h
#usr/include/glib-2.0/gio/gio-visibility.h
#usr/include/glib-2.0/gio/gio.h
#usr/include/glib-2.0/gio/gioenums.h
#usr/include/glib-2.0/gio/gioenumtypes.h
@@ -174,6 +174,7 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/gio/gtlsserverconnection.h
#usr/include/glib-2.0/gio/gunixconnection.h
#usr/include/glib-2.0/gio/gunixcredentialsmessage.h
#usr/include/glib-2.0/gio/gunixfdlist.h
#usr/include/glib-2.0/gio/gunixsocketaddress.h
#usr/include/glib-2.0/gio/gvfs.h
#usr/include/glib-2.0/gio/gvolume.h
@@ -221,6 +222,7 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/glib/gkeyfile.h
#usr/include/glib-2.0/glib/glib-autocleanups.h
#usr/include/glib-2.0/glib/glib-typeof.h
#usr/include/glib-2.0/glib/glib-visibility.h
#usr/include/glib-2.0/glib/glist.h
#usr/include/glib-2.0/glib/gmacros.h
#usr/include/glib-2.0/glib/gmain.h
@@ -230,6 +232,7 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/glib/gmessages.h
#usr/include/glib-2.0/glib/gnode.h
#usr/include/glib-2.0/glib/goption.h
#usr/include/glib-2.0/glib/gpathbuf.h
#usr/include/glib-2.0/glib/gpattern.h
#usr/include/glib-2.0/glib/gpoll.h
#usr/include/glib-2.0/glib/gprimes.h
@@ -270,9 +273,12 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/glib/gversion.h
#usr/include/glib-2.0/glib/gversionmacros.h
#usr/include/glib-2.0/glib/gwin32.h
#usr/include/glib-2.0/gmodule
#usr/include/glib-2.0/gmodule.h
#usr/include/glib-2.0/gmodule/gmodule-visibility.h
#usr/include/glib-2.0/gobject
#usr/include/glib-2.0/gobject/gbinding.h
#usr/include/glib-2.0/gobject/gbindinggroup.h
#usr/include/glib-2.0/gobject/gboxed.h
#usr/include/glib-2.0/gobject/gclosure.h
#usr/include/glib-2.0/gobject/genums.h
@@ -280,11 +286,13 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/gobject/glib-types.h
#usr/include/glib-2.0/gobject/gmarshal.h
#usr/include/glib-2.0/gobject/gobject-autocleanups.h
#usr/include/glib-2.0/gobject/gobject-visibility.h
#usr/include/glib-2.0/gobject/gobject.h
#usr/include/glib-2.0/gobject/gobjectnotifyqueue.c
#usr/include/glib-2.0/gobject/gparam.h
#usr/include/glib-2.0/gobject/gparamspecs.h
#usr/include/glib-2.0/gobject/gsignal.h
#usr/include/glib-2.0/gobject/gsignalgroup.h
#usr/include/glib-2.0/gobject/gsourceclosure.h
#usr/include/glib-2.0/gobject/gtype.h
#usr/include/glib-2.0/gobject/gtypemodule.h
@@ -293,24 +301,26 @@ usr/include/glib-2.0/gio/gdebugcontroller.h
#usr/include/glib-2.0/gobject/gvaluearray.h
#usr/include/glib-2.0/gobject/gvaluecollector.h
#usr/include/glib-2.0/gobject/gvaluetypes.h
#usr/lib/gio
#usr/lib/gio/modules
#usr/lib/glib-2.0
#usr/lib/glib-2.0/include
#usr/lib/glib-2.0/include/glibconfig.h
#usr/lib/libgio-2.0.so
usr/lib/libgio-2.0.so.0
usr/lib/libgio-2.0.so.0.7101.0
usr/lib/libgio-2.0.so.0.7700.0
#usr/lib/libglib-2.0.so
usr/lib/libglib-2.0.so.0
usr/lib/libglib-2.0.so.0.7101.0
usr/lib/libglib-2.0.so.0.7700.0
#usr/lib/libgmodule-2.0.so
usr/lib/libgmodule-2.0.so.0
usr/lib/libgmodule-2.0.so.0.7101.0
usr/lib/libgmodule-2.0.so.0.7700.0
#usr/lib/libgobject-2.0.so
usr/lib/libgobject-2.0.so.0
usr/lib/libgobject-2.0.so.0.7101.0
usr/lib/libgobject-2.0.so.0.7700.0
#usr/lib/libgthread-2.0.so
usr/lib/libgthread-2.0.so.0
usr/lib/libgthread-2.0.so.0.7101.0
usr/lib/libgthread-2.0.so.0.7700.0
#usr/lib/pkgconfig/gio-2.0.pc
#usr/lib/pkgconfig/gio-unix-2.0.pc
#usr/lib/pkgconfig/glib-2.0.pc
@@ -319,6 +329,7 @@ usr/lib/libgthread-2.0.so.0.7101.0
#usr/lib/pkgconfig/gmodule-no-export-2.0.pc
#usr/lib/pkgconfig/gobject-2.0.pc
#usr/lib/pkgconfig/gthread-2.0.pc
#usr/libexec/gio-launch-desktop
#usr/share/aclocal/glib-2.0.m4
#usr/share/aclocal/glib-gettext.m4
#usr/share/aclocal/gsettings.m4
@@ -331,8 +342,8 @@ usr/lib/libgthread-2.0.so.0.7101.0
#usr/share/gdb/auto-load
#usr/share/gdb/auto-load/usr
#usr/share/gdb/auto-load/usr/lib
#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.7101.0-gdb.py
#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.7101.0-gdb.py
#usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.7700.0-gdb.py
#usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.7700.0-gdb.py
#usr/share/gettext/its
#usr/share/gettext/its/gschema.its
#usr/share/gettext/its/gschema.loc
@@ -342,6 +353,7 @@ usr/lib/libgthread-2.0.so.0.7101.0
#usr/share/glib-2.0/codegen/codegen.py
#usr/share/glib-2.0/codegen/codegen_docbook.py
#usr/share/glib-2.0/codegen/codegen_main.py
#usr/share/glib-2.0/codegen/codegen_md.py
#usr/share/glib-2.0/codegen/codegen_rst.py
#usr/share/glib-2.0/codegen/config.py
#usr/share/glib-2.0/codegen/dbustypes.py
@@ -357,6 +369,9 @@ usr/lib/libgthread-2.0.so.0.7101.0
#usr/share/glib-2.0/schemas/gschema.dtd
#usr/share/glib-2.0/valgrind
#usr/share/glib-2.0/valgrind/glib.supp
#usr/share/locale/ab
#usr/share/locale/ab/LC_MESSAGES
#usr/share/locale/ab/LC_MESSAGES/glib20.mo
#usr/share/locale/af/LC_MESSAGES/glib20.mo
#usr/share/locale/am
#usr/share/locale/am/LC_MESSAGES
@@ -441,6 +456,9 @@ usr/lib/libgthread-2.0.so.0.7101.0
#usr/share/locale/hy/LC_MESSAGES
#usr/share/locale/hy/LC_MESSAGES/glib20.mo
#usr/share/locale/id/LC_MESSAGES/glib20.mo
#usr/share/locale/ie
#usr/share/locale/ie/LC_MESSAGES
#usr/share/locale/ie/LC_MESSAGES/glib20.mo
#usr/share/locale/is
#usr/share/locale/is/LC_MESSAGES
#usr/share/locale/is/LC_MESSAGES/glib20.mo
@@ -553,3 +571,4 @@ usr/lib/libgthread-2.0.so.0.7101.0
#usr/share/locale/zh_HK/LC_MESSAGES
#usr/share/locale/zh_HK/LC_MESSAGES/glib20.mo
#usr/share/locale/zh_TW/LC_MESSAGES/glib20.mo

View File

@@ -4,12 +4,12 @@
#usr/lib/libgmp.la
#usr/lib/libgmp.so
usr/lib/libgmp.so.10
usr/lib/libgmp.so.10.4.1
usr/lib/libgmp.so.10.5.0
#usr/lib/libgmpxx.a
#usr/lib/libgmpxx.la
#usr/lib/libgmpxx.so
usr/lib/libgmpxx.so.4
usr/lib/libgmpxx.so.4.6.1
usr/lib/libgmpxx.so.4.7.0
#usr/lib/pkgconfig/gmp.pc
#usr/lib/pkgconfig/gmpxx.pc
#usr/share/info/gmp.info

File diff suppressed because it is too large Load Diff

View File

@@ -44,15 +44,15 @@
#usr/lib/libharfbuzz-cairo.la
#usr/lib/libharfbuzz-cairo.so
usr/lib/libharfbuzz-cairo.so.0
usr/lib/libharfbuzz-cairo.so.0.60730.0
usr/lib/libharfbuzz-cairo.so.0.60811.0
#usr/lib/libharfbuzz-subset.la
#usr/lib/libharfbuzz-subset.so
usr/lib/libharfbuzz-subset.so.0
usr/lib/libharfbuzz-subset.so.0.60730.0
usr/lib/libharfbuzz-subset.so.0.60811.0
#usr/lib/libharfbuzz.la
#usr/lib/libharfbuzz.so
usr/lib/libharfbuzz.so.0
usr/lib/libharfbuzz.so.0.60730.0
usr/lib/libharfbuzz.so.0.60811.0
#usr/lib/pkgconfig/harfbuzz-cairo.pc
#usr/lib/pkgconfig/harfbuzz-subset.pc
#usr/lib/pkgconfig/harfbuzz.pc
@@ -129,6 +129,8 @@ usr/lib/libharfbuzz.so.0.60730.0
#usr/share/gtk-doc/html/harfbuzz/api-index-7-0-0.html
#usr/share/gtk-doc/html/harfbuzz/api-index-7-1-0.html
#usr/share/gtk-doc/html/harfbuzz/api-index-7-3-0.html
#usr/share/gtk-doc/html/harfbuzz/api-index-8-0-0.html
#usr/share/gtk-doc/html/harfbuzz/api-index-8-1-0.html
#usr/share/gtk-doc/html/harfbuzz/api-index-full.html
#usr/share/gtk-doc/html/harfbuzz/apple-advanced-typography-api.html
#usr/share/gtk-doc/html/harfbuzz/buffers-language-script-and-direction.html

View File

@@ -1,16 +1,18 @@
#usr/bin/bsdcat
#usr/bin/bsdcpio
#usr/bin/bsdtar
#usr/bin/bsdunzip
#usr/include/archive.h
#usr/include/archive_entry.h
#usr/lib/libarchive.la
#usr/lib/libarchive.so
usr/lib/libarchive.so.13
usr/lib/libarchive.so.13.6.2
usr/lib/libarchive.so.13.7.0
#usr/lib/pkgconfig/libarchive.pc
#usr/share/man/man1/bsdcat.1
#usr/share/man/man1/bsdcpio.1
#usr/share/man/man1/bsdtar.1
#usr/share/man/man1/bsdunzip.1
#usr/share/man/man3/archive_entry.3
#usr/share/man/man3/archive_entry_acl.3
#usr/share/man/man3/archive_entry_linkify.3

View File

@@ -21,7 +21,7 @@ usr/bin/location
#usr/lib/libloc.la
#usr/lib/libloc.so
usr/lib/libloc.so.1
usr/lib/libloc.so.1.0.2
usr/lib/libloc.so.1.0.3
usr/lib/perl5/site_perl/5.36.0/xxxMACHINExxx-linux-thread-multi/Location.pm
#usr/lib/perl5/site_perl/5.36.0/xxxMACHINExxx-linux-thread-multi/auto/Location
#usr/lib/perl5/site_perl/5.36.0/xxxMACHINExxx-linux-thread-multi/auto/Location/.packlist
@@ -37,7 +37,9 @@ usr/lib/python3.10/site-packages/location/export.py
usr/lib/python3.10/site-packages/location/i18n.py
#usr/lib/python3.10/site-packages/location/importer.py
usr/lib/python3.10/site-packages/location/logger.py
usr/share/bash-completion/completions/location
#usr/share/locale/de/LC_MESSAGES/libloc.mo
#usr/share/locale/ka/LC_MESSAGES/libloc.mo
#usr/share/man/man3/Location.3
#var/lib/location
var/lib/location/database.db

View File

@@ -54,7 +54,7 @@
#usr/lib/libxml2.la
#usr/lib/libxml2.so
usr/lib/libxml2.so.2
usr/lib/libxml2.so.2.11.1
usr/lib/libxml2.so.2.11.4
#usr/lib/pkgconfig/libxml-2.0.pc
#usr/share/aclocal/libxml.m4
#usr/share/doc/libxml2

View File

@@ -1,11 +1,11 @@
#usr/bin/meson
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info/PKG-INFO
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info/SOURCES.txt
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info/dependency_links.txt
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info/entry_points.txt
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info/requires.txt
#usr/lib/python3.10/site-packages/meson-0.64.1-py3.10.egg-info/top_level.txt
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/PKG-INFO
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/SOURCES.txt
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/dependency_links.txt
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/entry_points.txt
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/requires.txt
#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/top_level.txt
#usr/lib/python3.10/site-packages/mesonbuild
#usr/lib/python3.10/site-packages/mesonbuild/__init__.py
#usr/lib/python3.10/site-packages/mesonbuild/_pathlib.py
@@ -22,6 +22,7 @@
#usr/lib/python3.10/site-packages/mesonbuild/backend/__init__.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/backends.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/ninjabackend.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/nonebackend.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2010backend.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2012backend.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2013backend.py
@@ -31,6 +32,13 @@
#usr/lib/python3.10/site-packages/mesonbuild/backend/vs2022backend.py
#usr/lib/python3.10/site-packages/mesonbuild/backend/xcodebackend.py
#usr/lib/python3.10/site-packages/mesonbuild/build.py
#usr/lib/python3.10/site-packages/mesonbuild/cargo
#usr/lib/python3.10/site-packages/mesonbuild/cargo/__init__.py
#usr/lib/python3.10/site-packages/mesonbuild/cargo/builder.py
#usr/lib/python3.10/site-packages/mesonbuild/cargo/cfg.py
#usr/lib/python3.10/site-packages/mesonbuild/cargo/interpreter.py
#usr/lib/python3.10/site-packages/mesonbuild/cargo/manifest.py
#usr/lib/python3.10/site-packages/mesonbuild/cargo/version.py
#usr/lib/python3.10/site-packages/mesonbuild/cmake
#usr/lib/python3.10/site-packages/mesonbuild/cmake/__init__.py
#usr/lib/python3.10/site-packages/mesonbuild/cmake/common.py
@@ -70,6 +78,7 @@
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/gnu.py
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/intel.py
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/islinker.py
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/metrowerks.py
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/pgi.py
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/ti.py
#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/visualstudio.py
@@ -103,6 +112,7 @@
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/mpi.py
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/pkgconfig.py
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/platform.py
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/python.py
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/qt.py
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/scalapack.py
#usr/lib/python3.10/site-packages/mesonbuild/dependencies/ui.py
@@ -138,6 +148,7 @@
#usr/lib/python3.10/site-packages/mesonbuild/interpreterbase/operator.py
#usr/lib/python3.10/site-packages/mesonbuild/linkers
#usr/lib/python3.10/site-packages/mesonbuild/linkers/__init__.py
#usr/lib/python3.10/site-packages/mesonbuild/linkers/base.py
#usr/lib/python3.10/site-packages/mesonbuild/linkers/detect.py
#usr/lib/python3.10/site-packages/mesonbuild/linkers/linkers.py
#usr/lib/python3.10/site-packages/mesonbuild/mcompile.py
@@ -206,6 +217,8 @@
#usr/lib/python3.10/site-packages/mesonbuild/scripts/itstool.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/meson_exe.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/msgfmthelper.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/pycompile.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/python_info.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/regen_checker.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/run_tool.py
#usr/lib/python3.10/site-packages/mesonbuild/scripts/scanbuild.py

View File

@@ -1,15 +1,15 @@
usr/bin/opj_compress
usr/bin/opj_decompress
usr/bin/opj_dump
#usr/include/openjpeg-2.4
#usr/include/openjpeg-2.4/openjpeg.h
#usr/include/openjpeg-2.4/opj_config.h
#usr/include/openjpeg-2.4/opj_stdint.h
#usr/include/openjpeg-2.5
#usr/include/openjpeg-2.5/openjpeg.h
#usr/include/openjpeg-2.5/opj_config.h
#usr/include/openjpeg-2.5/opj_stdint.h
#usr/lib/libopenjp2.so
usr/lib/libopenjp2.so.2.4.0
usr/lib/libopenjp2.so.2.5.0
usr/lib/libopenjp2.so.7
#usr/lib/openjpeg-2.4
#usr/lib/openjpeg-2.4/OpenJPEGConfig.cmake
#usr/lib/openjpeg-2.4/OpenJPEGTargets-release.cmake
#usr/lib/openjpeg-2.4/OpenJPEGTargets.cmake
#usr/lib/openjpeg-2.5
#usr/lib/openjpeg-2.5/OpenJPEGConfig.cmake
#usr/lib/openjpeg-2.5/OpenJPEGTargets-release.cmake
#usr/lib/openjpeg-2.5/OpenJPEGTargets.cmake
#usr/lib/pkgconfig/libopenjp2.pc

View File

@@ -171,10 +171,10 @@ usr/lib/libpoppler-cpp.so.0
usr/lib/libpoppler-cpp.so.0.11.0
#usr/lib/libpoppler-glib.so
usr/lib/libpoppler-glib.so.8
usr/lib/libpoppler-glib.so.8.24.0
usr/lib/libpoppler-glib.so.8.26.0
#usr/lib/libpoppler.so
usr/lib/libpoppler.so.126
usr/lib/libpoppler.so.126.0.0
usr/lib/libpoppler.so.130
usr/lib/libpoppler.so.130.0.0
#usr/lib/pkgconfig/poppler-cpp.pc
#usr/lib/pkgconfig/poppler-glib.pc
#usr/lib/pkgconfig/poppler.pc

View File

@@ -3,6 +3,6 @@
#usr/lib/libpopt.la
usr/lib/libpopt.so
usr/lib/libpopt.so.0
usr/lib/libpopt.so.0.0.1
usr/lib/libpopt.so.0.0.2
#usr/lib/pkgconfig/popt.pc
#usr/share/man/man3/popt.3

View File

@@ -7,49 +7,57 @@ etc/ppp/dialer
etc/ppp/ioptions
etc/ppp/ip-down
etc/ppp/ip-up
#etc/ppp/openssl.cnf
etc/ppp/options
etc/ppp/pap-secrets
etc/ppp/standardloginscript
#usr/include/pppd
#usr/include/pppd/cbcp.h
#usr/include/pppd/ccp.h
#usr/include/pppd/chap-new.h
#usr/include/pppd/chap.h
#usr/include/pppd/chap_ms.h
#usr/include/pppd/eap-tls.h
#usr/include/pppd/crypto.h
#usr/include/pppd/crypto_ms.h
#usr/include/pppd/eap.h
#usr/include/pppd/ecp.h
#usr/include/pppd/eui64.h
#usr/include/pppd/fsm.h
#usr/include/pppd/ipcp.h
#usr/include/pppd/ipv6cp.h
#usr/include/pppd/ipxcp.h
#usr/include/pppd/lcp.h
#usr/include/pppd/magic.h
#usr/include/pppd/md4.h
#usr/include/pppd/md5.h
#usr/include/pppd/mppe.h
#usr/include/pppd/patchlevel.h
#usr/include/pppd/pathnames.h
#usr/include/pppd/pppcrypt.h
#usr/include/pppd/multilink.h
#usr/include/pppd/options.h
#usr/include/pppd/pppd.h
#usr/include/pppd/pppdconf.h
#usr/include/pppd/session.h
#usr/include/pppd/sha1.h
#usr/include/pppd/spinlock.h
#usr/include/pppd/tdb.h
#usr/include/pppd/upap.h
#usr/lib/pkgconfig/pppd.pc
usr/lib/pppd
usr/lib/pppd/2.4.9
usr/lib/pppd/2.4.9/minconn.so
usr/lib/pppd/2.4.9/openl2tp.so
usr/lib/pppd/2.4.9/passprompt.so
usr/lib/pppd/2.4.9/passwordfd.so
usr/lib/pppd/2.4.9/pppoatm.so
usr/lib/pppd/2.4.9/pppoe.so
usr/lib/pppd/2.4.9/pppol2tp.so
usr/lib/pppd/2.4.9/radattr.so
usr/lib/pppd/2.4.9/radius.so
usr/lib/pppd/2.4.9/radrealms.so
usr/lib/pppd/2.4.9/rp-pppoe.so
usr/lib/pppd/2.4.9/winbind.so
usr/lib/pppd/2.5.0
#usr/lib/pppd/2.5.0/minconn.la
usr/lib/pppd/2.5.0/minconn.so
#usr/lib/pppd/2.5.0/openl2tp.la
usr/lib/pppd/2.5.0/openl2tp.so
#usr/lib/pppd/2.5.0/passprompt.la
usr/lib/pppd/2.5.0/passprompt.so
#usr/lib/pppd/2.5.0/passwordfd.la
usr/lib/pppd/2.5.0/passwordfd.so
#usr/lib/pppd/2.5.0/pppoatm.la
usr/lib/pppd/2.5.0/pppoatm.so
#usr/lib/pppd/2.5.0/pppoe.la
usr/lib/pppd/2.5.0/pppoe.so
#usr/lib/pppd/2.5.0/pppol2tp.la
usr/lib/pppd/2.5.0/pppol2tp.so
#usr/lib/pppd/2.5.0/radattr.la
usr/lib/pppd/2.5.0/radattr.so
#usr/lib/pppd/2.5.0/radius.la
usr/lib/pppd/2.5.0/radius.so
#usr/lib/pppd/2.5.0/radrealms.la
usr/lib/pppd/2.5.0/radrealms.so
#usr/lib/pppd/2.5.0/winbind.la
usr/lib/pppd/2.5.0/winbind.so
usr/sbin/chat
usr/sbin/pppd
usr/sbin/pppdump
@@ -60,5 +68,7 @@ usr/sbin/pppstats
#usr/share/man/man8/pppd-radius.8
#usr/share/man/man8/pppd.8
#usr/share/man/man8/pppdump.8
#usr/share/man/man8/pppoe-discovery.8
#usr/share/man/man8/pppstats.8
var/log/connect-errors

View File

@@ -77,7 +77,7 @@ usr/bin/qpdf
#usr/lib/cmake/qpdf/qpdfConfigVersion.cmake
#usr/lib/libqpdf.so
usr/lib/libqpdf.so.29
usr/lib/libqpdf.so.29.3.0
usr/lib/libqpdf.so.29.5.0
#usr/lib/pkgconfig/libqpdf.pc
#usr/share/doc/qpdf
#usr/share/doc/qpdf/README-doc.txt

File diff suppressed because it is too large Load Diff

View File

@@ -1150,7 +1150,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/posix_types.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/resource.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/sembuf.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/setup.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/shmbuf.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/siginfo.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/generated/uapi/asm/signal.h
@@ -1174,6 +1173,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/kvm.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/perf_regs.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/ptrace.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/setup.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/sigcontext.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/ucontext.h
#lib/modules/KVER-ipfire/build/arch/riscv/include/uapi/asm/unistd.h
@@ -4844,6 +4844,9 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/drivers/platform/x86/dell/Makefile
#lib/modules/KVER-ipfire/build/drivers/platform/x86/dell/dell-wmi-sysman
#lib/modules/KVER-ipfire/build/drivers/platform/x86/dell/dell-wmi-sysman/Makefile
#lib/modules/KVER-ipfire/build/drivers/platform/x86/hp
#lib/modules/KVER-ipfire/build/drivers/platform/x86/hp/Kconfig
#lib/modules/KVER-ipfire/build/drivers/platform/x86/hp/Makefile
#lib/modules/KVER-ipfire/build/drivers/platform/x86/intel
#lib/modules/KVER-ipfire/build/drivers/platform/x86/intel/Kconfig
#lib/modules/KVER-ipfire/build/drivers/platform/x86/intel/Makefile
@@ -5834,9 +5837,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/fs/ceph
#lib/modules/KVER-ipfire/build/fs/ceph/Kconfig
#lib/modules/KVER-ipfire/build/fs/ceph/Makefile
#lib/modules/KVER-ipfire/build/fs/cifs
#lib/modules/KVER-ipfire/build/fs/cifs/Kconfig
#lib/modules/KVER-ipfire/build/fs/cifs/Makefile
#lib/modules/KVER-ipfire/build/fs/coda
#lib/modules/KVER-ipfire/build/fs/coda/Kconfig
#lib/modules/KVER-ipfire/build/fs/coda/Makefile
@@ -5927,9 +5927,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/fs/kernfs
#lib/modules/KVER-ipfire/build/fs/kernfs/Kconfig
#lib/modules/KVER-ipfire/build/fs/kernfs/Makefile
#lib/modules/KVER-ipfire/build/fs/ksmbd
#lib/modules/KVER-ipfire/build/fs/ksmbd/Kconfig
#lib/modules/KVER-ipfire/build/fs/ksmbd/Makefile
#lib/modules/KVER-ipfire/build/fs/lockd
#lib/modules/KVER-ipfire/build/fs/lockd/Makefile
#lib/modules/KVER-ipfire/build/fs/minix
@@ -6019,8 +6016,17 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/fs/romfs
#lib/modules/KVER-ipfire/build/fs/romfs/Kconfig
#lib/modules/KVER-ipfire/build/fs/romfs/Makefile
#lib/modules/KVER-ipfire/build/fs/smbfs_common
#lib/modules/KVER-ipfire/build/fs/smbfs_common/Makefile
#lib/modules/KVER-ipfire/build/fs/smb
#lib/modules/KVER-ipfire/build/fs/smb/Kconfig
#lib/modules/KVER-ipfire/build/fs/smb/Makefile
#lib/modules/KVER-ipfire/build/fs/smb/client
#lib/modules/KVER-ipfire/build/fs/smb/client/Kconfig
#lib/modules/KVER-ipfire/build/fs/smb/client/Makefile
#lib/modules/KVER-ipfire/build/fs/smb/common
#lib/modules/KVER-ipfire/build/fs/smb/common/Makefile
#lib/modules/KVER-ipfire/build/fs/smb/server
#lib/modules/KVER-ipfire/build/fs/smb/server/Kconfig
#lib/modules/KVER-ipfire/build/fs/smb/server/Makefile
#lib/modules/KVER-ipfire/build/fs/squashfs
#lib/modules/KVER-ipfire/build/fs/squashfs/Kconfig
#lib/modules/KVER-ipfire/build/fs/squashfs/Makefile
@@ -6316,6 +6322,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_GIGANTIC_PAGE
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_KCOV
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_MMIOWB
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_PTE_SPECIAL
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_SETUP_DMA_OPS
#lib/modules/KVER-ipfire/build/include/config/ARCH_HAS_SET_DIRECT_MAP
@@ -6585,6 +6592,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/BTRFS_FS_POSIX_ACL
#lib/modules/KVER-ipfire/build/include/config/BTT
#lib/modules/KVER-ipfire/build/include/config/BUG
#lib/modules/KVER-ipfire/build/include/config/BUG_ON_DATA_CORRUPTION
#lib/modules/KVER-ipfire/build/include/config/BUILDTIME_TABLE_SORT
#lib/modules/KVER-ipfire/build/include/config/BUILD_SALT
#lib/modules/KVER-ipfire/build/include/config/CACHEFILES
@@ -6854,6 +6862,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/DEBUG_BUGVERBOSE
#lib/modules/KVER-ipfire/build/include/config/DEBUG_INFO_NONE
#lib/modules/KVER-ipfire/build/include/config/DEBUG_KERNEL
#lib/modules/KVER-ipfire/build/include/config/DEBUG_LIST
#lib/modules/KVER-ipfire/build/include/config/DEBUG_MISC
#lib/modules/KVER-ipfire/build/include/config/DEBUG_WX
#lib/modules/KVER-ipfire/build/include/config/DECOMPRESS_BZIP2
@@ -6966,7 +6975,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/DRM_TTM
#lib/modules/KVER-ipfire/build/include/config/DRM_TTM_HELPER
#lib/modules/KVER-ipfire/build/include/config/DRM_UDL
#lib/modules/KVER-ipfire/build/include/config/DRM_USE_DYNAMIC_DEBUG
#lib/modules/KVER-ipfire/build/include/config/DRM_VIRTIO_GPU
#lib/modules/KVER-ipfire/build/include/config/DRM_VRAM_HELPER
#lib/modules/KVER-ipfire/build/include/config/DS1682
@@ -7329,9 +7337,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/GACT_PROB
#lib/modules/KVER-ipfire/build/include/config/GARP
#lib/modules/KVER-ipfire/build/include/config/GCC11_NO_ARRAY_BOUNDS
#lib/modules/KVER-ipfire/build/include/config/GCC12_NO_ARRAY_BOUNDS
#lib/modules/KVER-ipfire/build/include/config/GCC_PLUGINS
#lib/modules/KVER-ipfire/build/include/config/GCC_PLUGIN_LATENT_ENTROPY
#lib/modules/KVER-ipfire/build/include/config/GCC_VERSION
#lib/modules/KVER-ipfire/build/include/config/GENERIC_ALLOCATOR
#lib/modules/KVER-ipfire/build/include/config/GENERIC_ARCH_TOPOLOGY
@@ -7949,6 +7955,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/LOCKUP_DETECTOR
#lib/modules/KVER-ipfire/build/include/config/LOCK_DEBUGGING_SUPPORT
#lib/modules/KVER-ipfire/build/include/config/LOCK_DOWN_KERNEL_FORCE_NONE
#lib/modules/KVER-ipfire/build/include/config/LOCK_MM_AND_FIND_VMA
#lib/modules/KVER-ipfire/build/include/config/LOCK_SPIN_ON_OWNER
#lib/modules/KVER-ipfire/build/include/config/LOGO
#lib/modules/KVER-ipfire/build/include/config/LOGO_LINUX_CLUT224
@@ -8388,7 +8395,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/NET_CLS_ROUTE4
#lib/modules/KVER-ipfire/build/include/config/NET_CLS_RSVP
#lib/modules/KVER-ipfire/build/include/config/NET_CLS_RSVP6
#lib/modules/KVER-ipfire/build/include/config/NET_CLS_TCINDEX
#lib/modules/KVER-ipfire/build/include/config/NET_CLS_U32
#lib/modules/KVER-ipfire/build/include/config/NET_CORE
#lib/modules/KVER-ipfire/build/include/config/NET_DEVLINK
@@ -9477,8 +9483,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/SENSORS_MP2888
#lib/modules/KVER-ipfire/build/include/config/SENSORS_MP5023
#lib/modules/KVER-ipfire/build/include/config/SENSORS_NCT6683
#lib/modules/KVER-ipfire/build/include/config/SENSORS_NCT6775
#lib/modules/KVER-ipfire/build/include/config/SENSORS_NCT6775_CORE
#lib/modules/KVER-ipfire/build/include/config/SENSORS_NCT7802
#lib/modules/KVER-ipfire/build/include/config/SENSORS_NCT7904
#lib/modules/KVER-ipfire/build/include/config/SENSORS_NPCM7XX
@@ -9565,7 +9569,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/SERIAL_EARLYCON
#lib/modules/KVER-ipfire/build/include/config/SERIAL_FSL_LINFLEXUART
#lib/modules/KVER-ipfire/build/include/config/SERIAL_FSL_LPUART
#lib/modules/KVER-ipfire/build/include/config/SERIAL_FSL_LPUART_CONSOLE
#lib/modules/KVER-ipfire/build/include/config/SERIAL_JSM
#lib/modules/KVER-ipfire/build/include/config/SERIAL_MCTRL_GPIO
#lib/modules/KVER-ipfire/build/include/config/SERIAL_NONSTANDARD
@@ -9616,7 +9619,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/SLICOSS
#lib/modules/KVER-ipfire/build/include/config/SLUB
#lib/modules/KVER-ipfire/build/include/config/SLUB_CPU_PARTIAL
#lib/modules/KVER-ipfire/build/include/config/SMBFS_COMMON
#lib/modules/KVER-ipfire/build/include/config/SMBFS
#lib/modules/KVER-ipfire/build/include/config/SMB_SERVER
#lib/modules/KVER-ipfire/build/include/config/SMB_SERVER_CHECK_CAP_NET_ADMIN
#lib/modules/KVER-ipfire/build/include/config/SMB_SERVER_KERBEROS5
@@ -9928,6 +9931,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/config/TMPFS_XATTR
#lib/modules/KVER-ipfire/build/include/config/TOOLCHAIN_HAS_ZICBOM
#lib/modules/KVER-ipfire/build/include/config/TOOLCHAIN_HAS_ZIHINTPAUSE
#lib/modules/KVER-ipfire/build/include/config/TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI
#lib/modules/KVER-ipfire/build/include/config/TRACEPOINTS
#lib/modules/KVER-ipfire/build/include/config/TRACER_MAX_TRACE
#lib/modules/KVER-ipfire/build/include/config/TRACER_SNAPSHOT
@@ -15055,7 +15059,7 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/include/sound/ac97/regs.h
#lib/modules/KVER-ipfire/build/include/sound/ac97_codec.h
#lib/modules/KVER-ipfire/build/include/sound/aci.h
#lib/modules/KVER-ipfire/build/include/sound/acp62_chip_offset_byte.h
#lib/modules/KVER-ipfire/build/include/sound/acp63_chip_offset_byte.h
#lib/modules/KVER-ipfire/build/include/sound/ad1816a.h
#lib/modules/KVER-ipfire/build/include/sound/ad1843.h
#lib/modules/KVER-ipfire/build/include/sound/adau1373.h
@@ -17243,7 +17247,6 @@ etc/modprobe.d/ipv6.conf
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/gcc-generate-rtl-pass.h
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/gcc-generate-simple_ipa-pass.h
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/latent_entropy_plugin.c
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/latent_entropy_plugin.so
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/randomize_layout_plugin.c
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/sancov_plugin.c
#lib/modules/KVER-ipfire/build/scripts/gcc-plugins/stackleak_plugin.c
@@ -18909,8 +18912,6 @@ lib/modules/KVER-ipfire/kernel
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/max6697.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/mcp3021.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/nct6683.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/nct6775-core.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/nct6775.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/nct7802.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/nct7904.ko.xz
#lib/modules/KVER-ipfire/kernel/drivers/hwmon/npcm750-pwm-fan.ko.xz
@@ -20970,8 +20971,6 @@ lib/modules/KVER-ipfire/kernel
#lib/modules/KVER-ipfire/kernel/fs/btrfs/btrfs.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/cachefiles
#lib/modules/KVER-ipfire/kernel/fs/cachefiles/cachefiles.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/cifs
#lib/modules/KVER-ipfire/kernel/fs/cifs/cifs.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/configfs
#lib/modules/KVER-ipfire/kernel/fs/configfs/configfs.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/dlm
@@ -20989,8 +20988,6 @@ lib/modules/KVER-ipfire/kernel
#lib/modules/KVER-ipfire/kernel/fs/fuse
#lib/modules/KVER-ipfire/kernel/fs/fuse/cuse.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/fuse/fuse.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/ksmbd
#lib/modules/KVER-ipfire/kernel/fs/ksmbd/ksmbd.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/lockd
#lib/modules/KVER-ipfire/kernel/fs/lockd/lockd.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/netfs
@@ -21065,9 +21062,14 @@ lib/modules/KVER-ipfire/kernel
#lib/modules/KVER-ipfire/kernel/fs/ntfs3/ntfs3.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/reiserfs
#lib/modules/KVER-ipfire/kernel/fs/reiserfs/reiserfs.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/smbfs_common
#lib/modules/KVER-ipfire/kernel/fs/smbfs_common/cifs_arc4.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/smbfs_common/cifs_md4.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/smb
#lib/modules/KVER-ipfire/kernel/fs/smb/client
#lib/modules/KVER-ipfire/kernel/fs/smb/client/cifs.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/smb/common
#lib/modules/KVER-ipfire/kernel/fs/smb/common/cifs_arc4.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/smb/common/cifs_md4.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/smb/server
#lib/modules/KVER-ipfire/kernel/fs/smb/server/ksmbd.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/udf
#lib/modules/KVER-ipfire/kernel/fs/udf/udf.ko.xz
#lib/modules/KVER-ipfire/kernel/fs/xfs
@@ -21464,7 +21466,6 @@ lib/modules/KVER-ipfire/kernel
#lib/modules/KVER-ipfire/kernel/net/sched/cls_route.ko.xz
#lib/modules/KVER-ipfire/kernel/net/sched/cls_rsvp.ko.xz
#lib/modules/KVER-ipfire/kernel/net/sched/cls_rsvp6.ko.xz
#lib/modules/KVER-ipfire/kernel/net/sched/cls_tcindex.ko.xz
#lib/modules/KVER-ipfire/kernel/net/sched/cls_u32.ko.xz
#lib/modules/KVER-ipfire/kernel/net/sched/em_cmp.ko.xz
#lib/modules/KVER-ipfire/kernel/net/sched/em_ipset.ko.xz

View File

@@ -6,17 +6,23 @@
#usr/bin/rustdoc
#usr/etc/bash_completion.d
#usr/etc/bash_completion.d/cargo
#usr/lib/libchalk_derive-fc7fb87faf139acf.so
#usr/lib/libcstr-787d1701da0d79d1.so
#usr/lib/libproc_macro_hack-fecb54d8eaf0a4da.so
#usr/lib/librustc_driver-13af65dce58f3a3e.so
#usr/lib/librustc_macros-a45cd4d56169ca99.so
#usr/lib/libserde_derive-8d23bca40d64a77a.so
#usr/lib/libstd-0fe40874fc16816b.so
#usr/lib/libtest-55716b11992d48ea.so
#usr/lib/libthiserror_impl-54690cce425c1148.so
#usr/lib/libtracing_attributes-91f3382e4e1ce616.so
#usr/lib/libunic_langid_macros_impl-79401d3dedac8bf0.so
#usr/lib/libchalk_derive-df1ba6ae148a6ddc.so
#usr/lib/libcstr-7a7d743473d95dd0.so
#usr/lib/libderive_more-d731812b01aa7821.so
#usr/lib/libdisplaydoc-6901cbf7bab87f78.so
#usr/lib/libicu_provider_macros-cb1e5982542a884b.so
#usr/lib/libproc_macro_hack-c040e970c8577c75.so
#usr/lib/librustc_driver-01bbd1e5734ea133.so
#usr/lib/librustc_macros-a2f63fe7566c9225.so
#usr/lib/libserde_derive-63495483d6160609.so
#usr/lib/libstd-bc0adb7fabe8621d.so
#usr/lib/libtest-e366eebd3f243594.so
#usr/lib/libthiserror_impl-13047a3a7355731d.so
#usr/lib/libtracing_attributes-d45398e6ce5587a0.so
#usr/lib/libunic_langid_macros_impl-b8353669cece6840.so
#usr/lib/libyoke_derive-9931c2f683df4924.so
#usr/lib/libzerofrom_derive-bd4d9ba60f5fa61f.so
#usr/lib/libzerovec_derive-ac391ecf38fcb78c.so
#usr/lib/rustlib
#usr/lib/rustlib/components
#usr/lib/rustlib/etc
@@ -33,33 +39,34 @@
#usr/lib/rustlib/manifest-rustc
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libaddr2line-ba7f2aa39915a516.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libadler-e2f64e570256a439.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/liballoc-7f4daea9170e03fb.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcfg_if-29879d3f122083df.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcompiler_builtins-075fd5c332df05a6.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcore-ad65717bda80ba71.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libgetopts-b05d409f0c38f3d5.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libgimli-9896fc7c9e68c489.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libhashbrown-e7032066f192cc6a.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/liblibc-d17e328c319247a5.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libmemchr-fb493ec640c014df.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libminiz_oxide-9099b0da3eaaffe0.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libobject-5f7d4e1af311c4bd.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libpanic_abort-75697aba7400ca30.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libpanic_unwind-d414f5a7ba737802.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libproc_macro-c8400d916c324614.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_demangle-e470ba0ad762832b.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_alloc-189778bf6febddbd.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_core-4f78799ea3a69a63.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_std-6325baaae8e74a9f.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd-0fe40874fc16816b.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd-0fe40874fc16816b.so
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd_detect-4db88d80ffa8c3ef.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libtest-55716b11992d48ea.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libtest-55716b11992d48ea.so
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libunicode_width-d0df95430d2eff7e.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libunwind-c5ee724841ac217f.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libaddr2line-c5258195d6fd4759.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libadler-1bbdf0f51ec232f5.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/liballoc-4cc27b3427a5cdd7.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcfg_if-73245ab961129bf0.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcompiler_builtins-57ad40ba5b33de9c.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcore-a5bf23b6a318c065.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libgetopts-2af3fcf4b4e57b9b.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libgimli-574d8b18986e7a15.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libhashbrown-f3788a6cbe6faf66.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/liblibc-d883730a4a6f1511.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libmemchr-492872eae917dac5.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libminiz_oxide-b5ff4aeca34a6ff4.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libobject-b25aa39036ed8d76.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libpanic_abort-059abd4c2f076767.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libpanic_unwind-442692cb1b1c534e.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libproc_macro-e98f45a5ba2d6e51.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libprofiler_builtins-a72c647a9ffc7ffc.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_demangle-e540aed06f6ad76f.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_alloc-a7659f4b8fd27515.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_core-659eec2793908d14.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_std-3639482e6d57b441.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd-bc0adb7fabe8621d.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd-bc0adb7fabe8621d.so
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd_detect-8b9fdc555b444fd4.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libtest-e366eebd3f243594.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libtest-e366eebd3f243594.so
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libunicode_width-9d9393efa9938087.rlib
#usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libunwind-c3ef867720418372.rlib
#usr/lib/rustlib/rust-installer-version
#usr/lib/rustlib/uninstall.sh
#usr/libexec/cargo-credential-1password
@@ -96,6 +103,7 @@
#usr/share/man/man1/cargo-package.1
#usr/share/man/man1/cargo-pkgid.1
#usr/share/man/man1/cargo-publish.1
#usr/share/man/man1/cargo-remove.1
#usr/share/man/man1/cargo-report.1
#usr/share/man/man1/cargo-run.1
#usr/share/man/man1/cargo-rustc.1

View File

@@ -4,6 +4,7 @@ bin/lsblk
bin/lsfd
bin/more
bin/mount
bin/pipesz
bin/umount
bin/wdctl
#etc/fcron.daily
@@ -21,6 +22,7 @@ lib/libuuid.so.1.3.0
sbin/agetty
sbin/blkdiscard
sbin/blkid
sbin/blkpr
sbin/blkzone
sbin/blockdev
sbin/cfdisk
@@ -57,13 +59,13 @@ usr/bin/choom
#usr/bin/colrm
#usr/bin/column
usr/bin/eject
usr/bin/fadvise
usr/bin/fallocate
usr/bin/fincore
usr/bin/flock
usr/bin/getopt
usr/bin/hardlink
usr/bin/hexdump
#usr/bin/i386
usr/bin/ionice
#usr/bin/ipcmk
#usr/bin/ipcrm
@@ -102,8 +104,8 @@ usr/bin/uclampset
#usr/bin/unshare
usr/bin/uuidgen
usr/bin/uuidparse
usr/bin/waitpid
#usr/bin/whereis
#usr/bin/x86_64
#usr/include/blkid
#usr/include/blkid/blkid.h
#usr/include/libfdisk
@@ -158,6 +160,7 @@ usr/sbin/rtcwake
#usr/share/bash-completion/completions/delpart
#usr/share/bash-completion/completions/dmesg
#usr/share/bash-completion/completions/eject
#usr/share/bash-completion/completions/fadvise
#usr/share/bash-completion/completions/fallocate
#usr/share/bash-completion/completions/fdisk
#usr/share/bash-completion/completions/fincore
@@ -207,6 +210,7 @@ usr/sbin/rtcwake
#usr/share/bash-completion/completions/nsenter
#usr/share/bash-completion/completions/partx
#usr/share/bash-completion/completions/pg
#usr/share/bash-completion/completions/pipesz
#usr/share/bash-completion/completions/pivot_root
#usr/share/bash-completion/completions/prlimit
#usr/share/bash-completion/completions/readprofile
@@ -235,6 +239,7 @@ usr/sbin/rtcwake
#usr/share/bash-completion/completions/uuidd
#usr/share/bash-completion/completions/uuidgen
#usr/share/bash-completion/completions/uuidparse
#usr/share/bash-completion/completions/waitpid
#usr/share/bash-completion/completions/wall
#usr/share/bash-completion/completions/wdctl
#usr/share/bash-completion/completions/whereis
@@ -252,6 +257,7 @@ usr/sbin/rtcwake
#usr/share/man/man1/column.1
#usr/share/man/man1/dmesg.1
#usr/share/man/man1/eject.1
#usr/share/man/man1/fadvise.1
#usr/share/man/man1/fallocate.1
#usr/share/man/man1/fincore.1
#usr/share/man/man1/flock.1
@@ -276,6 +282,7 @@ usr/sbin/rtcwake
#usr/share/man/man1/namei.1
#usr/share/man/man1/nsenter.1
#usr/share/man/man1/pg.1
#usr/share/man/man1/pipesz.1
#usr/share/man/man1/prlimit.1
#usr/share/man/man1/rename.1
#usr/share/man/man1/renice.1
@@ -291,6 +298,7 @@ usr/sbin/rtcwake
#usr/share/man/man1/unshare.1
#usr/share/man/man1/uuidgen.1
#usr/share/man/man1/uuidparse.1
#usr/share/man/man1/waitpid.1
#usr/share/man/man1/whereis.1
#usr/share/man/man3/libblkid.3
#usr/share/man/man3/uuid.3
@@ -312,6 +320,7 @@ usr/sbin/rtcwake
#usr/share/man/man8/agetty.8
#usr/share/man/man8/blkdiscard.8
#usr/share/man/man8/blkid.8
#usr/share/man/man8/blkpr.8
#usr/share/man/man8/blkzone.8
#usr/share/man/man8/blockdev.8
#usr/share/man/man8/cfdisk.8

View File

@@ -23,9 +23,11 @@ etc/udev/hwdb.d/60-keyboard.hwdb
etc/udev/hwdb.d/60-seat.hwdb
etc/udev/hwdb.d/60-sensor.hwdb
etc/udev/hwdb.d/70-analyzers.hwdb
etc/udev/hwdb.d/70-av-production.hwdb
etc/udev/hwdb.d/70-cameras.hwdb
etc/udev/hwdb.d/70-joystick.hwdb
etc/udev/hwdb.d/70-mouse.hwdb
etc/udev/hwdb.d/70-pda.hwdb
etc/udev/hwdb.d/70-pointingstick.hwdb
etc/udev/hwdb.d/70-touchpad.hwdb
etc/udev/hwdb.d/80-ieee1394-unit-function.hwdb
@@ -40,6 +42,8 @@ lib/udev
lib/udev/ata_id
lib/udev/cdrom_id
lib/udev/collect
lib/udev/dmi_memory_id
lib/udev/fido_id
lib/udev/init-net-rules.sh
lib/udev/mtd_probe
lib/udev/network-aqm
@@ -51,10 +55,12 @@ lib/udev/rule_generator.functions
#lib/udev/rules.d
lib/udev/rules.d/25-alsa.rules
lib/udev/rules.d/50-udev-default.rules
lib/udev/rules.d/60-autosuspend.rules
lib/udev/rules.d/60-block.rules
lib/udev/rules.d/60-cdrom_id.rules
lib/udev/rules.d/60-drm.rules
lib/udev/rules.d/60-evdev.rules
lib/udev/rules.d/60-fido-id.rules
lib/udev/rules.d/60-input-id.rules
lib/udev/rules.d/60-net.rules
lib/udev/rules.d/60-persistent-alsa.rules
@@ -65,13 +71,16 @@ lib/udev/rules.d/60-persistent-v4l.rules
lib/udev/rules.d/60-sensor.rules
lib/udev/rules.d/60-serial.rules
lib/udev/rules.d/64-btrfs.rules
lib/udev/rules.d/70-camera.rules
lib/udev/rules.d/70-joystick.rules
lib/udev/rules.d/70-memory.rules
lib/udev/rules.d/70-mouse.rules
lib/udev/rules.d/70-touchpad.rules
lib/udev/rules.d/75-net-description.rules
lib/udev/rules.d/75-probe_mtd.rules
lib/udev/rules.d/78-sound-card.rules
lib/udev/rules.d/80-drivers.rules
lib/udev/rules.d/81-net-dhcp.rules
lib/udev/rules.d/99-aqm.rules
lib/udev/rules.d/99-offloading.rules
lib/udev/scsi_id
@@ -90,6 +99,7 @@ sbin/udevd
#usr/share/doc/udev-20171102/lfs/55-lfs.txt
#usr/share/doc/udev-20171102/lfs/README
#usr/share/man/man5/udev.conf.5
#usr/share/man/man7/hwdb.7
#usr/share/man/man7/udev.7
#usr/share/man/man8/udevadm.8
#usr/share/man/man8/udevd.8

View File

@@ -41,7 +41,7 @@ usr/bin/xzmore
#usr/lib/liblzma.la
#usr/lib/liblzma.so
usr/lib/liblzma.so.5
usr/lib/liblzma.so.5.4.1
usr/lib/liblzma.so.5.4.4
#usr/lib/pkgconfig/liblzma.pc
#usr/share/doc/xz
#usr/share/doc/xz/AUTHORS
@@ -51,6 +51,75 @@ usr/lib/liblzma.so.5.4.1
#usr/share/doc/xz/README
#usr/share/doc/xz/THANKS
#usr/share/doc/xz/TODO
#usr/share/doc/xz/api
#usr/share/doc/xz/api/annotated.html
#usr/share/doc/xz/api/base_8h.html
#usr/share/doc/xz/api/bc_s.png
#usr/share/doc/xz/api/bc_sd.png
#usr/share/doc/xz/api/bcj_8h.html
#usr/share/doc/xz/api/block_8h.html
#usr/share/doc/xz/api/check_8h.html
#usr/share/doc/xz/api/classes.html
#usr/share/doc/xz/api/closed.png
#usr/share/doc/xz/api/container_8h.html
#usr/share/doc/xz/api/delta_8h.html
#usr/share/doc/xz/api/dir_b17a1d403082bd69a703ed987cf158fb.html
#usr/share/doc/xz/api/doc.svg
#usr/share/doc/xz/api/docd.svg
#usr/share/doc/xz/api/doxygen.css
#usr/share/doc/xz/api/doxygen.svg
#usr/share/doc/xz/api/files.html
#usr/share/doc/xz/api/filter_8h.html
#usr/share/doc/xz/api/folderclosed.svg
#usr/share/doc/xz/api/folderclosedd.svg
#usr/share/doc/xz/api/folderopen.svg
#usr/share/doc/xz/api/folderopend.svg
#usr/share/doc/xz/api/functions.html
#usr/share/doc/xz/api/functions_vars.html
#usr/share/doc/xz/api/globals.html
#usr/share/doc/xz/api/globals_defs.html
#usr/share/doc/xz/api/globals_enum.html
#usr/share/doc/xz/api/globals_eval.html
#usr/share/doc/xz/api/globals_func.html
#usr/share/doc/xz/api/globals_type.html
#usr/share/doc/xz/api/hardware_8h.html
#usr/share/doc/xz/api/index.html
#usr/share/doc/xz/api/index_8h.html
#usr/share/doc/xz/api/index__hash_8h.html
#usr/share/doc/xz/api/lzma12_8h.html
#usr/share/doc/xz/api/lzma_8h.html
#usr/share/doc/xz/api/nav_f.png
#usr/share/doc/xz/api/nav_fd.png
#usr/share/doc/xz/api/nav_g.png
#usr/share/doc/xz/api/nav_h.png
#usr/share/doc/xz/api/nav_hd.png
#usr/share/doc/xz/api/open.png
#usr/share/doc/xz/api/splitbar.png
#usr/share/doc/xz/api/splitbard.png
#usr/share/doc/xz/api/stream__flags_8h.html
#usr/share/doc/xz/api/structlzma__allocator.html
#usr/share/doc/xz/api/structlzma__block.html
#usr/share/doc/xz/api/structlzma__filter.html
#usr/share/doc/xz/api/structlzma__index__iter.html
#usr/share/doc/xz/api/structlzma__mt.html
#usr/share/doc/xz/api/structlzma__options__bcj.html
#usr/share/doc/xz/api/structlzma__options__delta.html
#usr/share/doc/xz/api/structlzma__options__lzma.html
#usr/share/doc/xz/api/structlzma__stream.html
#usr/share/doc/xz/api/structlzma__stream__flags.html
#usr/share/doc/xz/api/sync_off.png
#usr/share/doc/xz/api/sync_on.png
#usr/share/doc/xz/api/tab_a.png
#usr/share/doc/xz/api/tab_ad.png
#usr/share/doc/xz/api/tab_b.png
#usr/share/doc/xz/api/tab_bd.png
#usr/share/doc/xz/api/tab_h.png
#usr/share/doc/xz/api/tab_hd.png
#usr/share/doc/xz/api/tab_s.png
#usr/share/doc/xz/api/tab_sd.png
#usr/share/doc/xz/api/tabs.css
#usr/share/doc/xz/api/version_8h.html
#usr/share/doc/xz/api/vli_8h.html
#usr/share/doc/xz/examples
#usr/share/doc/xz/examples/00_README.txt
#usr/share/doc/xz/examples/01_compress_easy.c
@@ -177,6 +246,30 @@ usr/lib/liblzma.so.5.4.1
#usr/share/man/man1/xzgrep.1
#usr/share/man/man1/xzless.1
#usr/share/man/man1/xzmore.1
#usr/share/man/pt_BR
#usr/share/man/pt_BR/man1
#usr/share/man/pt_BR/man1/lzcat.1
#usr/share/man/pt_BR/man1/lzcmp.1
#usr/share/man/pt_BR/man1/lzdiff.1
#usr/share/man/pt_BR/man1/lzegrep.1
#usr/share/man/pt_BR/man1/lzfgrep.1
#usr/share/man/pt_BR/man1/lzgrep.1
#usr/share/man/pt_BR/man1/lzless.1
#usr/share/man/pt_BR/man1/lzma.1
#usr/share/man/pt_BR/man1/lzmadec.1
#usr/share/man/pt_BR/man1/lzmore.1
#usr/share/man/pt_BR/man1/unlzma.1
#usr/share/man/pt_BR/man1/unxz.1
#usr/share/man/pt_BR/man1/xz.1
#usr/share/man/pt_BR/man1/xzcat.1
#usr/share/man/pt_BR/man1/xzcmp.1
#usr/share/man/pt_BR/man1/xzdec.1
#usr/share/man/pt_BR/man1/xzdiff.1
#usr/share/man/pt_BR/man1/xzegrep.1
#usr/share/man/pt_BR/man1/xzfgrep.1
#usr/share/man/pt_BR/man1/xzgrep.1
#usr/share/man/pt_BR/man1/xzless.1
#usr/share/man/pt_BR/man1/xzmore.1
#usr/share/man/ro
#usr/share/man/ro/man1
#usr/share/man/ro/man1/lzcat.1

View File

@@ -0,0 +1 @@
../../../../common/aarch64/util-linux

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,6 @@
etc/rc.d/init.d/networking/red
srv/web/ipfire/cgi-bin/extrahd.cgi
srv/web/ipfire/cgi-bin/fwhosts.cgi
srv/web/ipfire/cgi-bin/ovpnmain.cgi
srv/web/ipfire/cgi-bin/vulnerabilities.cgi
var/ipfire/extrahd/bin/extrahd.pl

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../common/json-c

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../common/ntfs-3g

View File

@@ -0,0 +1 @@
../../../common/oath-toolkit

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../common/rpcsvc-proto

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../common/squid-asnbl

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../../common/x86_64/util-linux

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,108 @@
#!/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) 2023 IPFire-Team <info@ipfire.org>. #
# #
############################################################################
#
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
migrate_extrahd() {
local dev
local fs
local mp
local rest
while IFS=';' read -r dev fs mp rest; do
# Make sure mountpoint it set (so that we won't delete
# everything in /etc/fstab if there was an empty line).
if [ -z "${mp}" ]; then
continue
fi
# Remove the mountpoint from /etc/fstab
sed "/[[:blank:]]${mp//\//\\\/}[[:blank:]]/d" -i /etc/fstab
done < /var/ipfire/extrahd/devices
}
core=179
# 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
/usr/local/bin/openvpnctrl -k
/usr/local/bin/openvpnctrl -kn2n
# Extract files
extract_files
# Remove files
rm -rvf \
/usr/lib/pppd/2.4.9
# Remove dropped sox addon
rm -vf \
/opt/pakfire/db/installed/meta-sox \
/opt/pakfire/db/meta/meta-sox \
/opt/pakfire/db/rootfiles/sox \
/usr/bin/play \
/usr/bin/rec \
/usr/bin/sox \
/usr/bin/soxi \
/usr/lib/libsox.so.3 \
/usr/lib/libsox.so.3.0.0
# update linker config
ldconfig
# Update Language cache
/usr/local/bin/update-lang-cache
# Filesytem cleanup
/usr/local/bin/filesystem-cleanup
# Migrate ExtraHD
migrate_extrahd
# Start services
/etc/init.d/udev restart
/etc/init.d/squid restart
/usr/local/bin/openvpnctrl -s
/usr/local/bin/openvpnctrl -sn2n
# 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
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/lib/location/ipset
var/log/cache
var/log/dhcpcd.log
var/log/messages
var/state/dhcp/dhcpd.leases
var/updatecache

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