Merge remote-tracking branch 'origin/next'

This commit is contained in:
Michael Tremer
2023-12-05 08:31:33 +00:00
169 changed files with 2673 additions and 4102 deletions

File diff suppressed because it is too large Load Diff

1
config/firewall/config Normal file
View File

@@ -0,0 +1 @@
1,REJECT,FORWARDFW,ON,std_net_src,ALL,std_net_tgt,RED,,TCP,,,ON,,,cust_srv,SMTP,Block port 25 (TCP) for outgoing connections to the internet,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second

View File

@@ -18,10 +18,10 @@ set -e
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
prefix="/usr"
exec_prefix="${prefix}"
datarootdir="${prefix}/share"
exec_prefix="/usr"
datarootdir="/usr/share"
. "${datarootdir}/grub/grub-mkconfig_lib"
. "$pkgdatadir/grub-mkconfig_lib"
export TEXTDOMAIN=grub
export TEXTDOMAINDIR="${datarootdir}/locale"
@@ -32,7 +32,7 @@ if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
OS=GNU/Linux
else
OS="${GRUB_DISTRIBUTOR} GNU/Linux"
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1) ${CLASS}"
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}"
fi
# loop-AES arranges things so that /dev/loop/X can be our root device, but
@@ -43,21 +43,29 @@ case ${GRUB_DEVICE} in
;;
esac
if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \
|| ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \
|| uses_abstraction "${GRUB_DEVICE}" lvm; then
: ${GRUB_CMDLINE_LINUX_RECOVERY:=single}
# Default to disabling partition uuid support to maintian compatibility with
# older kernels.
: ${GRUB_DISABLE_LINUX_PARTUUID=true}
# btrfs may reside on multiple devices. We cannot pass them as value of root= parameter
# and mounting btrfs requires user space scanning, so force UUID in this case.
if ( [ "x${GRUB_DEVICE_UUID}" = "x" ] && [ "x${GRUB_DEVICE_PARTUUID}" = "x" ] ) \
|| ( [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \
&& [ "x${GRUB_DISABLE_LINUX_PARTUUID}" = "xtrue" ] ) \
|| ( ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \
&& ! test -e "/dev/disk/by-partuuid/${GRUB_DEVICE_PARTUUID}" ) \
|| ( test -e "${GRUB_DEVICE}" && uses_abstraction "${GRUB_DEVICE}" lvm ); then
LINUX_ROOT_DEVICE=${GRUB_DEVICE}
elif [ "x${GRUB_DEVICE_UUID}" = "x" ] \
|| [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ]; then
LINUX_ROOT_DEVICE=PARTUUID=${GRUB_DEVICE_PARTUUID}
else
LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
fi
GRUBFS="`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`"
if [ x"$GRUBFS" = x ]; then
GRUBFS="$(stat -f --printf=%T / || true)"
fi
case x"$GRUBFS" in
case x"$GRUB_FS" in
xbtrfs)
rootsubvol="`make_system_path_relative_to_its_root /`"
rootsubvol="${rootsubvol#/}"
@@ -67,7 +75,7 @@ case x"$GRUBFS" in
xzfs)
rpool=`${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 2>/dev/null || true`
bootfs="`make_system_path_relative_to_its_root / | sed -e "s,@$,,"`"
LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs}"
LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs%/}"
;;
esac
@@ -101,7 +109,7 @@ linux_entry ()
echo "menuentry '$(echo "$os" | grub_quote)' ${CLASS} \$menuentry_id_option 'gnulinux-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/"
fi
if [ x$type != xrecovery ] ; then
save_default_entry | sed -e "s/^/\t/"
save_default_entry | grub_add_tab
fi
# Use ELILO's generic "efifb" when it's known to be available.
@@ -123,26 +131,30 @@ linux_entry ()
if [ x$dirname = x/ ]; then
if [ -z "${prepare_root_cache}" ]; then
prepare_root_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/")"
prepare_root_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE} | grub_add_tab)"
fi
printf '%s\n' "${prepare_root_cache}" | sed "s/^/$submenu_indentation/"
else
if [ -z "${prepare_boot_cache}" ]; then
prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/")"
prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | grub_add_tab)"
fi
printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/"
fi
message="$(gettext_printf "Loading Linux %s ..." ${version})"
sed "s/^/$submenu_indentation/" << EOF
echo '$message'
echo '$(echo "$message" | grub_quote)'
linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
EOF
if test -n "${initrd}" ; then
# TRANSLATORS: ramdisk isn't identifier. Should be translated.
message="$(gettext_printf "Loading initial ramdisk ...")"
initrd_path=
for i in ${initrd}; do
initrd_path="${initrd_path} ${rel_dirname}/${i}"
done
sed "s/^/$submenu_indentation/" << EOF
echo '$message'
initrd ${rel_dirname}/${initrd}
echo '$(echo "$message" | grub_quote)'
initrd $(echo $initrd_path)
EOF
fi
sed "s/^/$submenu_indentation/" << EOF
@@ -153,13 +165,15 @@ EOF
machine=`uname -m`
case "x$machine" in
xi?86 | xx86_64)
list=`for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
done` ;;
list=
for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do
if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
done ;;
*)
list=`for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* ; do
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
done` ;;
list=
for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* ; do
if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
done ;;
esac
case "$machine" in
@@ -179,9 +193,19 @@ title_correction_code=
# yet, so it's empty. In a submenu it will be equal to '\t' (one tab).
submenu_indentation=""
is_first_entry=true
while [ "x$list" != "x" ] ; do
linux=`version_find_latest $list`
# Perform a reverse version sort on the entire list.
# Temporarily replace the '.old' suffix by ' 1' and append ' 2' for all
# other files to order the '.old' files after their non-old counterpart
# in reverse-sorted order.
reverse_sorted_list=$(echo $list | tr ' ' '\n' | sed -e 's/\.old$/ 1/; / 1$/! s/$/ 2/' | version_sort -r | sed -e 's/ 1$/.old/; s/ 2$//')
if [ "x$GRUB_TOP_LEVEL" != x ]; then
reverse_sorted_list=$(grub_move_to_front "$GRUB_TOP_LEVEL" ${reverse_sorted_list})
fi
is_top_level=true
for linux in ${reverse_sorted_list}; do
gettext_printf "Found linux image: %s\n" "$linux" >&2
basename=`basename $linux`
dirname=`dirname $linux`
@@ -190,9 +214,19 @@ while [ "x$list" != "x" ] ; do
alt_version=`echo $version | sed -e "s,\.old$,,g"`
linux_root_device_thisversion="${LINUX_ROOT_DEVICE}"
initrd=
for i in "initrd.img-${version}" "initrd-${version}.img" "initrd-${version}.gz" \
"initrd-${version}" "initramfs-${version}.img" \
initrd_early=
for i in ${GRUB_EARLY_INITRD_LINUX_STOCK} \
${GRUB_EARLY_INITRD_LINUX_CUSTOM}; do
if test -e "${dirname}/${i}" ; then
initrd_early="${initrd_early} ${i}"
fi
done
initrd_real=
for i in "initrd.img-${version}" "initrd-${version}.img" \
"initrd-${alt_version}.img.old" "initrd-${version}.gz" \
"initrd-${alt_version}.gz.old" "initrd-${version}" \
"initramfs-${version}.img" "initramfs-${alt_version}.img.old" \
"initrd.img-${alt_version}" "initrd-${alt_version}.img" \
"initrd-${alt_version}" "initramfs-${alt_version}.img" \
"initramfs-genkernel-${version}" \
@@ -200,11 +234,22 @@ while [ "x$list" != "x" ] ; do
"initramfs-genkernel-${GENKERNEL_ARCH}-${version}" \
"initramfs-genkernel-${GENKERNEL_ARCH}-${alt_version}"; do
if test -e "${dirname}/${i}" ; then
initrd="$i"
initrd_real="${i}"
break
fi
done
initrd=
if test -n "${initrd_early}" || test -n "${initrd_real}"; then
initrd="${initrd_early} ${initrd_real}"
initrd_display=
for i in ${initrd}; do
initrd_display="${initrd_display} ${dirname}/${i}"
done
gettext_printf "Found initrd image: %s\n" "$(echo $initrd_display)" >&2
fi
config=
for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" "/etc/kernels/kernel-config-${version}" ; do
if test -e "${i}" ; then
@@ -218,26 +263,36 @@ while [ "x$list" != "x" ] ; do
initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr -d \"`
fi
if test -n "${initrd}" ; then
gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2
elif test -z "${initramfs}" ; then
if test -z "${initramfs}" && test -z "${initrd_real}" ; then
# "UUID=" and "ZFS=" magic is parsed by initrd or initramfs. Since there's
# no initrd or builtin initramfs, it can't work here.
linux_root_device_thisversion=${GRUB_DEVICE}
if [ "x${GRUB_DEVICE_PARTUUID}" = "x" ] \
|| [ "x${GRUB_DISABLE_LINUX_PARTUUID}" = "xtrue" ]; then
linux_root_device_thisversion=${GRUB_DEVICE}
else
linux_root_device_thisversion=PARTUUID=${GRUB_DEVICE_PARTUUID}
fi
fi
if [ "x$is_first_entry" = xtrue ]; then
# The GRUB_DISABLE_SUBMENU option used to be different than others since it was
# mentioned in the documentation that has to be set to 'y' instead of 'true' to
# enable it. This caused a lot of confusion to users that set the option to 'y',
# 'yes' or 'true'. This was fixed but all of these values must be supported now.
if [ "x${GRUB_DISABLE_SUBMENU}" = xyes ] || [ "x${GRUB_DISABLE_SUBMENU}" = xy ]; then
GRUB_DISABLE_SUBMENU="true"
fi
if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xtrue ]; then
linux_entry "Serial Console: ${OS}" "${version}" serial \
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT} console=ttyS0,115200n8"
submenu_indentation="\t"
submenu_indentation="$grub_tab"
if [ -z "$boot_device_id" ]; then
boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
fi
fi
list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '`
done
echo "$title_correction_code"

View File

@@ -9,6 +9,7 @@ etc/grub.d/00_cloud
etc/grub.d/00_header
etc/grub.d/10_linux
etc/grub.d/20_linux_xen
etc/grub.d/25_bli
etc/grub.d/30_os-prober
etc/grub.d/30_uefi-firmware
etc/grub.d/40_custom
@@ -53,6 +54,8 @@ usr/lib/grub/arm64-efi/bitmap.mod
usr/lib/grub/arm64-efi/bitmap.module
usr/lib/grub/arm64-efi/bitmap_scale.mod
usr/lib/grub/arm64-efi/bitmap_scale.module
usr/lib/grub/arm64-efi/bli.mod
usr/lib/grub/arm64-efi/bli.module
usr/lib/grub/arm64-efi/blocklist.mod
usr/lib/grub/arm64-efi/blocklist.module
usr/lib/grub/arm64-efi/boot.mod
@@ -116,6 +119,8 @@ usr/lib/grub/arm64-efi/efifwsetup.mod
usr/lib/grub/arm64-efi/efifwsetup.module
usr/lib/grub/arm64-efi/efinet.mod
usr/lib/grub/arm64-efi/efinet.module
usr/lib/grub/arm64-efi/efitextmode.mod
usr/lib/grub/arm64-efi/efitextmode.module
usr/lib/grub/arm64-efi/elf.mod
usr/lib/grub/arm64-efi/elf.module
usr/lib/grub/arm64-efi/eval.mod
@@ -189,6 +194,7 @@ usr/lib/grub/arm64-efi/gcry_twofish.module
usr/lib/grub/arm64-efi/gcry_whirlpool.mod
usr/lib/grub/arm64-efi/gcry_whirlpool.module
usr/lib/grub/arm64-efi/gdb_grub
usr/lib/grub/arm64-efi/gdb_helper.py
usr/lib/grub/arm64-efi/geli.mod
usr/lib/grub/arm64-efi/geli.module
usr/lib/grub/arm64-efi/gettext.mod
@@ -201,7 +207,6 @@ usr/lib/grub/arm64-efi/gfxterm_background.mod
usr/lib/grub/arm64-efi/gfxterm_background.module
usr/lib/grub/arm64-efi/gfxterm_menu.mod
usr/lib/grub/arm64-efi/gfxterm_menu.module
usr/lib/grub/arm64-efi/gmodule.pl
usr/lib/grub/arm64-efi/gptsync.mod
usr/lib/grub/arm64-efi/gptsync.module
usr/lib/grub/arm64-efi/gzio.mod
@@ -356,6 +361,8 @@ usr/lib/grub/arm64-efi/pbkdf2_test.mod
usr/lib/grub/arm64-efi/pbkdf2_test.module
usr/lib/grub/arm64-efi/pgp.mod
usr/lib/grub/arm64-efi/pgp.module
usr/lib/grub/arm64-efi/plainmount.mod
usr/lib/grub/arm64-efi/plainmount.module
usr/lib/grub/arm64-efi/png.mod
usr/lib/grub/arm64-efi/png.module
usr/lib/grub/arm64-efi/priority_queue.mod
@@ -502,61 +509,6 @@ usr/share/grub/unicode.pf2
#usr/share/info/grub.info
#usr/share/info/grub.info-1
#usr/share/info/grub.info-2
#usr/share/locale/ast/LC_MESSAGES/grub.mo
#usr/share/locale/ca/LC_MESSAGES/grub.mo
#usr/share/locale/da/LC_MESSAGES/grub.mo
#usr/share/locale/de/LC_MESSAGES/grub.mo
#usr/share/locale/de@hebrew
#usr/share/locale/de@hebrew/LC_MESSAGES
#usr/share/locale/de@hebrew/LC_MESSAGES/grub.mo
#usr/share/locale/de_CH
#usr/share/locale/de_CH/LC_MESSAGES
#usr/share/locale/de_CH/LC_MESSAGES/grub.mo
#usr/share/locale/en@arabic
#usr/share/locale/en@arabic/LC_MESSAGES
#usr/share/locale/en@arabic/LC_MESSAGES/grub.mo
#usr/share/locale/en@cyrillic
#usr/share/locale/en@cyrillic/LC_MESSAGES
#usr/share/locale/en@cyrillic/LC_MESSAGES/grub.mo
#usr/share/locale/en@greek
#usr/share/locale/en@greek/LC_MESSAGES
#usr/share/locale/en@greek/LC_MESSAGES/grub.mo
#usr/share/locale/en@hebrew
#usr/share/locale/en@hebrew/LC_MESSAGES
#usr/share/locale/en@hebrew/LC_MESSAGES/grub.mo
#usr/share/locale/en@piglatin
#usr/share/locale/en@piglatin/LC_MESSAGES
#usr/share/locale/en@piglatin/LC_MESSAGES/grub.mo
#usr/share/locale/en@quot/LC_MESSAGES/grub.mo
#usr/share/locale/eo/LC_MESSAGES/grub.mo
#usr/share/locale/es/LC_MESSAGES/grub.mo
#usr/share/locale/fi/LC_MESSAGES/grub.mo
#usr/share/locale/fr/LC_MESSAGES/grub.mo
#usr/share/locale/gl/LC_MESSAGES/grub.mo
#usr/share/locale/hr/LC_MESSAGES/grub.mo
#usr/share/locale/hu/LC_MESSAGES/grub.mo
#usr/share/locale/id/LC_MESSAGES/grub.mo
#usr/share/locale/it/LC_MESSAGES/grub.mo
#usr/share/locale/ja/LC_MESSAGES/grub.mo
#usr/share/locale/ko/LC_MESSAGES/grub.mo
#usr/share/locale/lg/LC_MESSAGES/grub.mo
#usr/share/locale/lt/LC_MESSAGES/grub.mo
#usr/share/locale/nb/LC_MESSAGES/grub.mo
#usr/share/locale/nl/LC_MESSAGES/grub.mo
#usr/share/locale/pa/LC_MESSAGES/grub.mo
#usr/share/locale/pl/LC_MESSAGES/grub.mo
#usr/share/locale/pt/LC_MESSAGES/grub.mo
#usr/share/locale/pt_BR/LC_MESSAGES/grub.mo
#usr/share/locale/ro/LC_MESSAGES/grub.mo
#usr/share/locale/ru/LC_MESSAGES/grub.mo
#usr/share/locale/sl/LC_MESSAGES/grub.mo
#usr/share/locale/sr/LC_MESSAGES/grub.mo
#usr/share/locale/sv/LC_MESSAGES/grub.mo
#usr/share/locale/tr/LC_MESSAGES/grub.mo
#usr/share/locale/uk/LC_MESSAGES/grub.mo
#usr/share/locale/vi/LC_MESSAGES/grub.mo
#usr/share/locale/zh_CN/LC_MESSAGES/grub.mo
#usr/share/locale/zh_TW/LC_MESSAGES/grub.mo
#usr/share/man/man1/grub-editenv.1
#usr/share/man/man1/grub-file.1
#usr/share/man/man1/grub-fstest.1

View File

@@ -5,6 +5,7 @@ boot/u-boot-rpi3.bin
boot/u-boot-rpi4.bin
boot/uEnv.txt
boot/uboot.env
usr/bin/mkimage
#usr/share/u-boot
#usr/share/u-boot/nanopi_r2c
usr/share/u-boot/nanopi_r2c/u-boot-rockchip.bin

View File

@@ -1 +0,0 @@
usr/bin/mkimage

View File

@@ -1,6 +1,6 @@
usr/bin/awk
usr/bin/gawk
usr/bin/gawk-5.2.2
usr/bin/gawk-5.3.0
usr/bin/gawkbug
usr/etc/profile.d
usr/etc/profile.d/gawk.csh
@@ -49,6 +49,7 @@ usr/lib/gawk/time.so
#usr/share/awk/round.awk
#usr/share/awk/shellquote.awk
#usr/share/awk/strtonum.awk
#usr/share/awk/tocsv.awk
#usr/share/awk/walkarray.awk
#usr/share/awk/zerofile.awk
#usr/share/info/gawk.info

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.60811.0
usr/lib/libharfbuzz-cairo.so.0.60822.0
#usr/lib/libharfbuzz-subset.la
#usr/lib/libharfbuzz-subset.so
usr/lib/libharfbuzz-subset.so.0
usr/lib/libharfbuzz-subset.so.0.60811.0
usr/lib/libharfbuzz-subset.so.0.60822.0
#usr/lib/libharfbuzz.la
#usr/lib/libharfbuzz.so
usr/lib/libharfbuzz.so.0
usr/lib/libharfbuzz.so.0.60811.0
usr/lib/libharfbuzz.so.0.60822.0
#usr/lib/pkgconfig/harfbuzz-cairo.pc
#usr/lib/pkgconfig/harfbuzz-subset.pc
#usr/lib/pkgconfig/harfbuzz.pc
@@ -131,6 +131,7 @@ usr/lib/libharfbuzz.so.0.60811.0
#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-8-2-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

@@ -50,6 +50,7 @@ usr/share/bash-completion/completions/tc
#usr/share/man/man8/dcb-ets.8
#usr/share/man/man8/dcb-maxrate.8
#usr/share/man/man8/dcb-pfc.8
#usr/share/man/man8/dcb-rewr.8
#usr/share/man/man8/dcb.8
#usr/share/man/man8/devlink-dev.8
#usr/share/man/man8/devlink-dpipe.8
@@ -110,8 +111,6 @@ usr/share/bash-completion/completions/tc
#usr/share/man/man8/tc-bfifo.8
#usr/share/man/man8/tc-bpf.8
#usr/share/man/man8/tc-cake.8
#usr/share/man/man8/tc-cbq-details.8
#usr/share/man/man8/tc-cbq.8
#usr/share/man/man8/tc-cbs.8
#usr/share/man/man8/tc-cgroup.8
#usr/share/man/man8/tc-choke.8
@@ -158,7 +157,6 @@ usr/share/bash-completion/completions/tc
#usr/share/man/man8/tc-stab.8
#usr/share/man/man8/tc-taprio.8
#usr/share/man/man8/tc-tbf.8
#usr/share/man/man8/tc-tcindex.8
#usr/share/man/man8/tc-tunnel_key.8
#usr/share/man/man8/tc-u32.8
#usr/share/man/man8/tc-vlan.8

View File

@@ -6,9 +6,10 @@ usr/bin/jq
#usr/lib/libjq.so
usr/lib/libjq.so.1
usr/lib/libjq.so.1.0.4
#usr/lib/pkgconfig/libjq.pc
#usr/share/doc/jq
#usr/share/doc/jq/AUTHORS
#usr/share/doc/jq/COPYING
#usr/share/doc/jq/README
#usr/share/doc/jq/NEWS.md
#usr/share/doc/jq/README.md
#usr/share/man/man1/jq.1

View File

@@ -1,6 +1,8 @@
#usr/include/sodium
#usr/include/sodium.h
#usr/include/sodium/core.h
#usr/include/sodium/crypto_aead_aegis128l.h
#usr/include/sodium/crypto_aead_aegis256.h
#usr/include/sodium/crypto_aead_aes256gcm.h
#usr/include/sodium/crypto_aead_chacha20poly1305.h
#usr/include/sodium/crypto_aead_xchacha20poly1305.h
@@ -25,6 +27,8 @@
#usr/include/sodium/crypto_hash_sha512.h
#usr/include/sodium/crypto_kdf.h
#usr/include/sodium/crypto_kdf_blake2b.h
#usr/include/sodium/crypto_kdf_hkdf_sha256.h
#usr/include/sodium/crypto_kdf_hkdf_sha512.h
#usr/include/sodium/crypto_kx.h
#usr/include/sodium/crypto_onetimeauth.h
#usr/include/sodium/crypto_onetimeauth_poly1305.h
@@ -64,6 +68,6 @@
#usr/include/sodium/version.h
#usr/lib/libsodium.la
#usr/lib/libsodium.so
usr/lib/libsodium.so.23
usr/lib/libsodium.so.23.3.0
usr/lib/libsodium.so.26
usr/lib/libsodium.so.26.1.0
#usr/lib/pkgconfig/libsodium.pc

View File

@@ -30,6 +30,7 @@ lib/firmware/amd-ucode/microcode_amd_fam19h.bin
lib/firmware/amd/amd_sev_fam17h_model0xh.sbin
lib/firmware/amd/amd_sev_fam17h_model3xh.sbin
lib/firmware/amd/amd_sev_fam19h_model0xh.sbin
lib/firmware/amd/amd_sev_fam19h_model1xh.sbin
#lib/firmware/amdgpu
lib/firmware/amdgpu/aldebaran_mec.bin
lib/firmware/amdgpu/aldebaran_mec2.bin
@@ -585,6 +586,12 @@ lib/firmware/amdgpu/yellow_carp_sdma.bin
lib/firmware/amdgpu/yellow_carp_ta.bin
lib/firmware/amdgpu/yellow_carp_toc.bin
lib/firmware/amdgpu/yellow_carp_vcn.bin
#lib/firmware/amdtee
lib/firmware/amdtee/773bd96f-b83f-4d52-b12dc529b13d8543.bin
lib/firmware/amdtee/amd_pmf_v3.bin
#lib/firmware/amlogic
#lib/firmware/amlogic/bluetooth
#lib/firmware/amlogic/bluetooth/w2_bt_fw_uart.bin
#lib/firmware/amphion
#lib/firmware/amphion/vpu
lib/firmware/amphion/vpu/vpu_fw_imx8_dec.bin
@@ -701,7 +708,6 @@ lib/firmware/ath10k/QCA99X0/hw2.0/firmware-5.bin
lib/firmware/ath10k/WCN3990/hw1.0
lib/firmware/ath10k/WCN3990/hw1.0/board-2.bin
lib/firmware/ath10k/WCN3990/hw1.0/firmware-5.bin
#lib/firmware/ath10k/WCN3990/hw1.0/notice.txt_wlanmdsp
lib/firmware/ath10k/WCN3990/hw1.0/wlanmdsp.mbn
lib/firmware/ath11k
lib/firmware/ath11k/IPQ5018
@@ -930,6 +936,7 @@ lib/firmware/brcm/brcmfmac43430-sdio.friendlyarm,nanopi-r1.txt
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,3-model-b.txt
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,model-zero-2-w.txt
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,model-zero-w.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bananapi-m64.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-plus.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-ultra.txt
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-zero.txt
@@ -1091,6 +1098,20 @@ lib/firmware/cbfw-3.2.5.1.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8b92.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c26.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c26.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c46.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c46.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c47.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c47.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c48.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c48.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c49.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c49.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c70.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c70.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c71.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c71.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c72.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-103c8c72.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-104312af-spkid0-l0.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-104312af-spkid0-r0.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-cali-104312af-spkid1-l0.bin
@@ -1358,6 +1379,20 @@ lib/firmware/cbfw-3.2.5.1.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8b92.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c26.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c26.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c46.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c46.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c47.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c47.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c48.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c48.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c49.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c49.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c70.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c70.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c71.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c71.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c72.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-103c8c72.wmfw
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-104312af-spkid0-l0.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-104312af-spkid0-r0.bin
#lib/firmware/cirrus/cs35l41-dsp1-spk-prot-104312af-spkid1-l0.bin
@@ -1547,6 +1582,8 @@ lib/firmware/cbfw-3.2.5.1.bin
#lib/firmware/cirrus/cs35l41/v6.63.0/halo_cspl_RAM_revB2_29.65.0.wmfw
#lib/firmware/cirrus/cs35l41/v6.78.0
#lib/firmware/cirrus/cs35l41/v6.78.0/halo_cspl_RAM_revB2_29.80.0.wmfw
#lib/firmware/cirrus/cs35l41/v6.83.0
#lib/firmware/cirrus/cs35l41/v6.83.0/halo_cspl_RAM_revB2_29.85.0.wmfw
#lib/firmware/cis
lib/firmware/cis/3CCFEM556.cis
lib/firmware/cis/3CXEM556.cis
@@ -1595,15 +1632,15 @@ lib/firmware/cxgb4/configs/t6-config-hashfilter.txt
lib/firmware/cxgb4/t4-config.txt
lib/firmware/cxgb4/t4fw-1.14.4.0.bin
lib/firmware/cxgb4/t4fw-1.15.37.0.bin
lib/firmware/cxgb4/t4fw-1.27.3.0.bin
lib/firmware/cxgb4/t4fw-1.27.4.0.bin
lib/firmware/cxgb4/t4fw.bin
lib/firmware/cxgb4/t5-config.txt
lib/firmware/cxgb4/t5fw-1.14.4.0.bin
lib/firmware/cxgb4/t5fw-1.15.37.0.bin
lib/firmware/cxgb4/t5fw-1.27.3.0.bin
lib/firmware/cxgb4/t5fw-1.27.4.0.bin
lib/firmware/cxgb4/t5fw.bin
lib/firmware/cxgb4/t6-config.txt
lib/firmware/cxgb4/t6fw-1.27.3.0.bin
lib/firmware/cxgb4/t6fw-1.27.4.0.bin
lib/firmware/cxgb4/t6fw.bin
lib/firmware/cypress
lib/firmware/cypress/cyfmac43012-sdio.bin
@@ -1789,6 +1826,7 @@ lib/firmware/i915/kbl_huc_4.0.0.bin
lib/firmware/i915/kbl_huc_ver02_00_1810.bin
lib/firmware/i915/mtl_dmc.bin
lib/firmware/i915/mtl_dmc_ver2_10.bin
lib/firmware/i915/mtl_gsc_1.bin
lib/firmware/i915/mtl_guc_70.bin
lib/firmware/i915/mtl_huc_gsc.bin
lib/firmware/i915/rkl_dmc_ver2_02.bin
@@ -1882,6 +1920,14 @@ lib/firmware/intel/fw_sst_22a8.bin
#lib/firmware/intel/ibt-0040-4150.sfi
#lib/firmware/intel/ibt-0041-0041.ddc
#lib/firmware/intel/ibt-0041-0041.sfi
#lib/firmware/intel/ibt-0180-0041.ddc
#lib/firmware/intel/ibt-0180-0041.sfi
#lib/firmware/intel/ibt-0180-1050.ddc
#lib/firmware/intel/ibt-0180-1050.sfi
#lib/firmware/intel/ibt-0180-4150.ddc
#lib/firmware/intel/ibt-0180-4150.sfi
#lib/firmware/intel/ibt-0291-0291.ddc
#lib/firmware/intel/ibt-0291-0291.sfi
#lib/firmware/intel/ibt-1040-0041.ddc
#lib/firmware/intel/ibt-1040-0041.sfi
#lib/firmware/intel/ibt-1040-1020.ddc
@@ -2040,6 +2086,13 @@ lib/firmware/iwlwifi-cc-a0-72.ucode
lib/firmware/iwlwifi-cc-a0-73.ucode
lib/firmware/iwlwifi-cc-a0-74.ucode
lib/firmware/iwlwifi-cc-a0-77.ucode
lib/firmware/iwlwifi-gl-c0-fm-c0-83.ucode
lib/firmware/iwlwifi-gl-c0-fm-c0.pnvm
lib/firmware/iwlwifi-ma-b0-gf-a0-83.ucode
lib/firmware/iwlwifi-ma-b0-gf-a0.pnvm
lib/firmware/iwlwifi-ma-b0-gf4-a0-83.ucode
lib/firmware/iwlwifi-ma-b0-gf4-a0.pnvm
lib/firmware/iwlwifi-ma-b0-hr-b0-83.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-72.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-73.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-74.ucode
@@ -2048,6 +2101,7 @@ lib/firmware/iwlwifi-so-a0-gf-a0-78.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-79.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-81.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-83.ucode
lib/firmware/iwlwifi-so-a0-gf-a0-84.ucode
lib/firmware/iwlwifi-so-a0-gf-a0.pnvm
lib/firmware/iwlwifi-so-a0-gf4-a0-72.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0-73.ucode
@@ -2057,6 +2111,7 @@ lib/firmware/iwlwifi-so-a0-gf4-a0-78.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0-79.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0-81.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0-83.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0-84.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0.pnvm
lib/firmware/iwlwifi-so-a0-hr-b0-72.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-73.ucode
@@ -2064,6 +2119,8 @@ lib/firmware/iwlwifi-so-a0-hr-b0-74.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-77.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-79.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-81.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-83.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-84.ucode
lib/firmware/iwlwifi-so-a0-jf-b0-72.ucode
lib/firmware/iwlwifi-so-a0-jf-b0-73.ucode
lib/firmware/iwlwifi-so-a0-jf-b0-74.ucode
@@ -2078,6 +2135,7 @@ lib/firmware/iwlwifi-ty-a0-gf-a0-78.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-79.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-81.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-83.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-84.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm
#lib/firmware/kaweth
lib/firmware/kaweth/new_code.bin
@@ -3091,6 +3149,7 @@ lib/firmware/qcom/a650_gmu.bin
lib/firmware/qcom/a650_sqe.fw
lib/firmware/qcom/a660_gmu.bin
lib/firmware/qcom/a660_sqe.fw
lib/firmware/qcom/a702_sqe.fw
#lib/firmware/qcom/apq8016
lib/firmware/qcom/apq8016/WCNSS_qcom_wlan_nv_sbc.bin
lib/firmware/qcom/apq8016/mba.mbn
@@ -3106,6 +3165,28 @@ lib/firmware/qcom/apq8096/modem.mbn
lib/firmware/qcom/apq8096/modemr.jsn
lib/firmware/qcom/leia_pfp_470.fw
lib/firmware/qcom/leia_pm4_470.fw
#lib/firmware/qcom/qcm2290
lib/firmware/qcom/qcm2290/a702_zap.mbn
lib/firmware/qcom/qcm2290/adsp.mbn
lib/firmware/qcom/qcm2290/adspr.jsn
lib/firmware/qcom/qcm2290/adsps.jsn
lib/firmware/qcom/qcm2290/adspua.jsn
lib/firmware/qcom/qcm2290/modem.mbn
lib/firmware/qcom/qcm2290/modemr.jsn
lib/firmware/qcom/qcm2290/modemuw.jsn
lib/firmware/qcom/qcm2290/wlanmdsp.mbn
#lib/firmware/qcom/qrb4210
lib/firmware/qcom/qrb4210/a610_zap.mbn
lib/firmware/qcom/qrb4210/adsp.mbn
lib/firmware/qcom/qrb4210/adspr.jsn
lib/firmware/qcom/qrb4210/adsps.jsn
lib/firmware/qcom/qrb4210/adspua.jsn
lib/firmware/qcom/qrb4210/cdsp.mbn
lib/firmware/qcom/qrb4210/cdspr.jsn
lib/firmware/qcom/qrb4210/modem.mbn
lib/firmware/qcom/qrb4210/modemr.jsn
lib/firmware/qcom/qrb4210/modemuw.jsn
lib/firmware/qcom/qrb4210/wlanmdsp.mbn
#lib/firmware/qcom/sc8280xp
#lib/firmware/qcom/sc8280xp/LENOVO
#lib/firmware/qcom/sc8280xp/LENOVO/21BX
@@ -3118,6 +3199,7 @@ lib/firmware/qcom/leia_pm4_470.fw
#lib/firmware/qcom/sc8280xp/LENOVO/21BX/qccdsp8280.mbn
#lib/firmware/qcom/sc8280xp/LENOVO/21BX/qcdxkmsuc8280.mbn
#lib/firmware/qcom/sc8280xp/LENOVO/21BX/qcslpi8280.mbn
#lib/firmware/qcom/sc8280xp/SC8280XP-LENOVO-X13S-tplg.bin
#lib/firmware/qcom/sdm845
#lib/firmware/qcom/sdm845/Thundercomm
#lib/firmware/qcom/sdm845/Thundercomm/db845c
@@ -3134,8 +3216,14 @@ lib/firmware/qcom/leia_pm4_470.fw
#lib/firmware/qcom/sdm845/modem.mbn
#lib/firmware/qcom/sdm845/modem_nm.mbn
#lib/firmware/qcom/sdm845/modemuw.jsn
#lib/firmware/qcom/sdm845/notice.txt_wlanmdsp
#lib/firmware/qcom/sdm845/wlanmdsp.mbn
#lib/firmware/qcom/sm8250
#lib/firmware/qcom/sm8250/Thundercomm
#lib/firmware/qcom/sm8250/Thundercomm/RB5
#lib/firmware/qcom/sm8250/Thundercomm/RB5/slpi.mbn
#lib/firmware/qcom/sm8250/Thundercomm/RB5/slpir.jsn
#lib/firmware/qcom/sm8250/Thundercomm/RB5/slpius.jsn
#lib/firmware/qcom/sm8250/a650_zap.mbn
#lib/firmware/qcom/sm8250/adsp.mbn
#lib/firmware/qcom/sm8250/adspr.jsn
@@ -3154,6 +3242,8 @@ lib/firmware/qcom/venus-5.2/venus.mdt
#lib/firmware/qcom/venus-5.4
lib/firmware/qcom/venus-5.4/venus.mbn
lib/firmware/qcom/venus-5.4/venus.mdt
#lib/firmware/qcom/venus-6.0
lib/firmware/qcom/venus-6.0/venus.mbn
lib/firmware/qcom/vpu-1.0
lib/firmware/qcom/vpu-1.0/venus.mbn
lib/firmware/qcom/vpu-1.0/venus.mdt
@@ -3503,6 +3593,7 @@ lib/firmware/rt73.bin
#lib/firmware/rtl_bt/rtl8852bu_fw.bin
#lib/firmware/rtl_bt/rtl8852cu_config.bin
#lib/firmware/rtl_bt/rtl8852cu_fw.bin
#lib/firmware/rtl_bt/rtl8852cu_fw_v2.bin
#lib/firmware/rtl_nic
lib/firmware/rtl_nic/rtl8105e-1.fw
lib/firmware/rtl_nic/rtl8106e-1.fw
@@ -3721,17 +3812,3 @@ lib/firmware/wsm_22.bin
#lib/firmware/yam
lib/firmware/yam/1200.bin
lib/firmware/yam/9600.bin
lib/firmware/ctefx.bin
lib/firmware/ctspeq.bin
lib/firmware/ess/maestro3_assp_kernel.fw
lib/firmware/ess/maestro3_assp_minisrc.fw
lib/firmware/korg/k1212.dsp
lib/firmware/sb16/alaw_main.csp
lib/firmware/sb16/ima_adpcm_capture.csp
lib/firmware/sb16/ima_adpcm_init.csp
lib/firmware/sb16/ima_adpcm_playback.csp
lib/firmware/sb16/mulaw_main.csp
lib/firmware/yamaha/ds1_ctrl.fw
lib/firmware/yamaha/ds1_dsp.fw
lib/firmware/yamaha/ds1e_ctrl.fw
lib/firmware/yamaha/yss225_registers.bin

View File

@@ -7,7 +7,7 @@ usr/bin/luac
#usr/include/lualib.h
#usr/lib/liblua.so
usr/lib/liblua.so.5.4
usr/lib/liblua.so.5.4.4
usr/lib/liblua.so.5.4.6
#usr/lib/lua
#usr/lib/lua/5.4
#usr/lib/pkgconfig/lua.pc

View File

@@ -8,10 +8,10 @@
#usr/bin/manpath
#usr/bin/whatis
#usr/lib/man-db
#usr/lib/man-db/libman-2.11.2.so
#usr/lib/man-db/libman-2.12.0.so
#usr/lib/man-db/libman.la
#usr/lib/man-db/libman.so
#usr/lib/man-db/libmandb-2.11.2.so
#usr/lib/man-db/libmandb-2.12.0.so
#usr/lib/man-db/libmandb.la
#usr/lib/man-db/libmandb.so
#usr/libexec/man-db
@@ -54,6 +54,7 @@
#usr/share/locale/ja/LC_MESSAGES/man-db-gnulib.mo
#usr/share/locale/ja/LC_MESSAGES/man-db.mo
#usr/share/locale/ka/LC_MESSAGES/man-db-gnulib.mo
#usr/share/locale/ka/LC_MESSAGES/man-db.mo
#usr/share/locale/ko/LC_MESSAGES/man-db-gnulib.mo
#usr/share/locale/ko/LC_MESSAGES/man-db.mo
#usr/share/locale/ms/LC_MESSAGES/man-db-gnulib.mo

View File

@@ -1,11 +1,11 @@
#usr/bin/meson
#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/meson-1.2.3-py3.10.egg-info
#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/PKG-INFO
#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/SOURCES.txt
#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/dependency_links.txt
#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/entry_points.txt
#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/requires.txt
#usr/lib/python3.10/site-packages/meson-1.2.3-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

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.5.0
usr/lib/libqpdf.so.29.6.1
#usr/lib/pkgconfig/libqpdf.pc
#usr/share/doc/qpdf
#usr/share/doc/qpdf/README-doc.txt

View File

@@ -9,6 +9,7 @@ etc/grub.d/00_cloud
etc/grub.d/00_header
etc/grub.d/10_linux
etc/grub.d/20_linux_xen
etc/grub.d/25_bli
etc/grub.d/30_os-prober
etc/grub.d/30_uefi-firmware
etc/grub.d/40_custom
@@ -53,6 +54,8 @@ usr/lib/grub/riscv64-efi/bitmap.mod
usr/lib/grub/riscv64-efi/bitmap.module
usr/lib/grub/riscv64-efi/bitmap_scale.mod
usr/lib/grub/riscv64-efi/bitmap_scale.module
usr/lib/grub/riscv64-efi/bli.mod
usr/lib/grub/riscv64-efi/bli.module
usr/lib/grub/riscv64-efi/blocklist.mod
usr/lib/grub/riscv64-efi/blocklist.module
usr/lib/grub/riscv64-efi/boot.mod
@@ -116,6 +119,8 @@ usr/lib/grub/riscv64-efi/efifwsetup.mod
usr/lib/grub/riscv64-efi/efifwsetup.module
usr/lib/grub/riscv64-efi/efinet.mod
usr/lib/grub/riscv64-efi/efinet.module
usr/lib/grub/riscv64-efi/efitextmode.mod
usr/lib/grub/riscv64-efi/efitextmode.module
usr/lib/grub/riscv64-efi/elf.mod
usr/lib/grub/riscv64-efi/elf.module
usr/lib/grub/riscv64-efi/eval.mod
@@ -189,6 +194,7 @@ usr/lib/grub/riscv64-efi/gcry_twofish.module
usr/lib/grub/riscv64-efi/gcry_whirlpool.mod
usr/lib/grub/riscv64-efi/gcry_whirlpool.module
usr/lib/grub/riscv64-efi/gdb_grub
usr/lib/grub/riscv64-efi/gdb_helper.py
usr/lib/grub/riscv64-efi/geli.mod
usr/lib/grub/riscv64-efi/geli.module
usr/lib/grub/riscv64-efi/gettext.mod
@@ -201,7 +207,6 @@ usr/lib/grub/riscv64-efi/gfxterm_background.mod
usr/lib/grub/riscv64-efi/gfxterm_background.module
usr/lib/grub/riscv64-efi/gfxterm_menu.mod
usr/lib/grub/riscv64-efi/gfxterm_menu.module
usr/lib/grub/riscv64-efi/gmodule.pl
usr/lib/grub/riscv64-efi/gptsync.mod
usr/lib/grub/riscv64-efi/gptsync.module
usr/lib/grub/riscv64-efi/gzio.mod
@@ -356,6 +361,8 @@ usr/lib/grub/riscv64-efi/pbkdf2_test.mod
usr/lib/grub/riscv64-efi/pbkdf2_test.module
usr/lib/grub/riscv64-efi/pgp.mod
usr/lib/grub/riscv64-efi/pgp.module
usr/lib/grub/riscv64-efi/plainmount.mod
usr/lib/grub/riscv64-efi/plainmount.module
usr/lib/grub/riscv64-efi/png.mod
usr/lib/grub/riscv64-efi/png.module
usr/lib/grub/riscv64-efi/priority_queue.mod
@@ -500,61 +507,6 @@ usr/share/grub/unicode.pf2
#usr/share/info/grub.info
#usr/share/info/grub.info-1
#usr/share/info/grub.info-2
#usr/share/locale/ast/LC_MESSAGES/grub.mo
#usr/share/locale/ca/LC_MESSAGES/grub.mo
#usr/share/locale/da/LC_MESSAGES/grub.mo
#usr/share/locale/de/LC_MESSAGES/grub.mo
#usr/share/locale/de@hebrew
#usr/share/locale/de@hebrew/LC_MESSAGES
#usr/share/locale/de@hebrew/LC_MESSAGES/grub.mo
#usr/share/locale/de_CH
#usr/share/locale/de_CH/LC_MESSAGES
#usr/share/locale/de_CH/LC_MESSAGES/grub.mo
#usr/share/locale/en@arabic
#usr/share/locale/en@arabic/LC_MESSAGES
#usr/share/locale/en@arabic/LC_MESSAGES/grub.mo
#usr/share/locale/en@cyrillic
#usr/share/locale/en@cyrillic/LC_MESSAGES
#usr/share/locale/en@cyrillic/LC_MESSAGES/grub.mo
#usr/share/locale/en@greek
#usr/share/locale/en@greek/LC_MESSAGES
#usr/share/locale/en@greek/LC_MESSAGES/grub.mo
#usr/share/locale/en@hebrew
#usr/share/locale/en@hebrew/LC_MESSAGES
#usr/share/locale/en@hebrew/LC_MESSAGES/grub.mo
#usr/share/locale/en@piglatin
#usr/share/locale/en@piglatin/LC_MESSAGES
#usr/share/locale/en@piglatin/LC_MESSAGES/grub.mo
#usr/share/locale/en@quot/LC_MESSAGES/grub.mo
#usr/share/locale/eo/LC_MESSAGES/grub.mo
#usr/share/locale/es/LC_MESSAGES/grub.mo
#usr/share/locale/fi/LC_MESSAGES/grub.mo
#usr/share/locale/fr/LC_MESSAGES/grub.mo
#usr/share/locale/gl/LC_MESSAGES/grub.mo
#usr/share/locale/hr/LC_MESSAGES/grub.mo
#usr/share/locale/hu/LC_MESSAGES/grub.mo
#usr/share/locale/id/LC_MESSAGES/grub.mo
#usr/share/locale/it/LC_MESSAGES/grub.mo
#usr/share/locale/ja/LC_MESSAGES/grub.mo
#usr/share/locale/ko/LC_MESSAGES/grub.mo
#usr/share/locale/lg/LC_MESSAGES/grub.mo
#usr/share/locale/lt/LC_MESSAGES/grub.mo
#usr/share/locale/nb/LC_MESSAGES/grub.mo
#usr/share/locale/nl/LC_MESSAGES/grub.mo
#usr/share/locale/pa/LC_MESSAGES/grub.mo
#usr/share/locale/pl/LC_MESSAGES/grub.mo
#usr/share/locale/pt/LC_MESSAGES/grub.mo
#usr/share/locale/pt_BR/LC_MESSAGES/grub.mo
#usr/share/locale/ro/LC_MESSAGES/grub.mo
#usr/share/locale/ru/LC_MESSAGES/grub.mo
#usr/share/locale/sl/LC_MESSAGES/grub.mo
#usr/share/locale/sr/LC_MESSAGES/grub.mo
#usr/share/locale/sv/LC_MESSAGES/grub.mo
#usr/share/locale/tr/LC_MESSAGES/grub.mo
#usr/share/locale/uk/LC_MESSAGES/grub.mo
#usr/share/locale/vi/LC_MESSAGES/grub.mo
#usr/share/locale/zh_CN/LC_MESSAGES/grub.mo
#usr/share/locale/zh_TW/LC_MESSAGES/grub.mo
#usr/share/man/man1/grub-editenv.1
#usr/share/man/man1/grub-file.1
#usr/share/man/man1/grub-fstest.1

View File

@@ -181,6 +181,7 @@ usr/sbin/swanctl
#usr/share/man/man1/pki---gen.1
#usr/share/man/man1/pki---issue.1
#usr/share/man/man1/pki---keyid.1
#usr/share/man/man1/pki---ocsp.1
#usr/share/man/man1/pki---pkcs7.1
#usr/share/man/man1/pki---print.1
#usr/share/man/man1/pki---pub.1

View File

@@ -74,6 +74,7 @@ usr/sbin/visudo
#usr/share/locale/hr/LC_MESSAGES/sudoers.mo
#usr/share/locale/hu/LC_MESSAGES/sudo.mo
#usr/share/locale/hu/LC_MESSAGES/sudoers.mo
#usr/share/locale/id/LC_MESSAGES/sudo.mo
#usr/share/locale/it/LC_MESSAGES/sudo.mo
#usr/share/locale/it/LC_MESSAGES/sudoers.mo
#usr/share/locale/ja/LC_MESSAGES/sudo.mo

View File

@@ -80,6 +80,7 @@
#usr/share/texinfo/Texinfo/XSLoader.pm
#usr/share/texinfo/ext
#usr/share/texinfo/ext/epub3.pm
#usr/share/texinfo/ext/highlight_syntax.pm
#usr/share/texinfo/ext/latex2html.pm
#usr/share/texinfo/ext/tex4ht.pm
#usr/share/texinfo/htmlxref.cnf
@@ -87,7 +88,6 @@
#usr/share/texinfo/init/book.pm
#usr/share/texinfo/init/chm.pm
#usr/share/texinfo/init/documentation_examples.pm
#usr/share/texinfo/init/highlight_syntax.pm
#usr/share/texinfo/init/html32.pm
#usr/share/texinfo/js
#usr/share/texinfo/js/info.css
@@ -107,6 +107,7 @@
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x05.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x06.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x07.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x08.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x09.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x0a.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x0b.pm
@@ -123,6 +124,11 @@
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x16.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x17.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x18.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x19.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x1a.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x1b.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x1c.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x1d.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x1e.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x1f.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x20.pm
@@ -134,12 +140,42 @@
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x26.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x27.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x28.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x29.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x2a.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x2b.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x2c.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x2d.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x2e.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x2f.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x30.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x31.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x32.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x33.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x34.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x35.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x36.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x37.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x38.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x39.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x3a.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x3b.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x3c.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x3d.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x3e.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x3f.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x40.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x41.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x42.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x43.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x44.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x45.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x46.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x47.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x48.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x49.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x4a.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x4b.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x4c.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x4d.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x4e.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/x4f.pm
@@ -228,6 +264,13 @@
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa2.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa3.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa4.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa5.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa6.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa7.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa8.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xa9.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xaa.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xab.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xac.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xad.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xae.pm
@@ -272,6 +315,39 @@
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xd5.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xd6.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xd7.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xd8.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xd9.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xda.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xdb.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xdc.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xdd.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xde.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xdf.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe0.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe1.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe2.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe3.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe4.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe5.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe6.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe7.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe8.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xe9.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xea.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xeb.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xec.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xed.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xee.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xef.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf0.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf1.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf2.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf3.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf4.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf5.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf6.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf7.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf8.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xf9.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xfa.pm
#usr/share/texinfo/lib/Text-Unidecode/lib/Text/Unidecode/xfb.pm

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

View File

@@ -2,6 +2,7 @@ usr/bin/lsusb
usr/bin/lsusb.py
usr/bin/usb-devices
usr/bin/usbhid-dump
#usr/lib/pkgconfig/usbutils.pc
#usr/share/man/man1/usb-devices.1
#usr/share/man/man8/lsusb.8
#usr/share/man/man8/usbhid-dump.8

View File

@@ -10,6 +10,7 @@ etc/grub.d/00_cloud
etc/grub.d/00_header
etc/grub.d/10_linux
etc/grub.d/20_linux_xen
etc/grub.d/25_bli
etc/grub.d/30_os-prober
etc/grub.d/30_uefi-firmware
etc/grub.d/40_custom
@@ -230,6 +231,7 @@ usr/lib/grub/i386-pc/gcry_whirlpool.module
usr/lib/grub/i386-pc/gdb.mod
usr/lib/grub/i386-pc/gdb.module
usr/lib/grub/i386-pc/gdb_grub
usr/lib/grub/i386-pc/gdb_helper.py
usr/lib/grub/i386-pc/geli.mod
usr/lib/grub/i386-pc/geli.module
usr/lib/grub/i386-pc/gettext.mod
@@ -242,7 +244,6 @@ usr/lib/grub/i386-pc/gfxterm_background.mod
usr/lib/grub/i386-pc/gfxterm_background.module
usr/lib/grub/i386-pc/gfxterm_menu.mod
usr/lib/grub/i386-pc/gfxterm_menu.module
usr/lib/grub/i386-pc/gmodule.pl
usr/lib/grub/i386-pc/gptsync.mod
usr/lib/grub/i386-pc/gptsync.module
usr/lib/grub/i386-pc/gzio.mod
@@ -429,6 +430,8 @@ usr/lib/grub/i386-pc/pcidump.mod
usr/lib/grub/i386-pc/pcidump.module
usr/lib/grub/i386-pc/pgp.mod
usr/lib/grub/i386-pc/pgp.module
usr/lib/grub/i386-pc/plainmount.mod
usr/lib/grub/i386-pc/plainmount.module
usr/lib/grub/i386-pc/plan9.mod
usr/lib/grub/i386-pc/plan9.module
usr/lib/grub/i386-pc/play.mod
@@ -640,6 +643,8 @@ usr/lib/grub/x86_64-efi/bitmap.mod
usr/lib/grub/x86_64-efi/bitmap.module
usr/lib/grub/x86_64-efi/bitmap_scale.mod
usr/lib/grub/x86_64-efi/bitmap_scale.module
usr/lib/grub/x86_64-efi/bli.mod
usr/lib/grub/x86_64-efi/bli.module
usr/lib/grub/x86_64-efi/blocklist.mod
usr/lib/grub/x86_64-efi/blocklist.module
usr/lib/grub/x86_64-efi/boot.mod
@@ -719,6 +724,8 @@ usr/lib/grub/x86_64-efi/efifwsetup.mod
usr/lib/grub/x86_64-efi/efifwsetup.module
usr/lib/grub/x86_64-efi/efinet.mod
usr/lib/grub/x86_64-efi/efinet.module
usr/lib/grub/x86_64-efi/efitextmode.mod
usr/lib/grub/x86_64-efi/efitextmode.module
usr/lib/grub/x86_64-efi/ehci.mod
usr/lib/grub/x86_64-efi/ehci.module
usr/lib/grub/x86_64-efi/elf.mod
@@ -794,6 +801,7 @@ usr/lib/grub/x86_64-efi/gcry_twofish.module
usr/lib/grub/x86_64-efi/gcry_whirlpool.mod
usr/lib/grub/x86_64-efi/gcry_whirlpool.module
usr/lib/grub/x86_64-efi/gdb_grub
usr/lib/grub/x86_64-efi/gdb_helper.py
usr/lib/grub/x86_64-efi/geli.mod
usr/lib/grub/x86_64-efi/geli.module
usr/lib/grub/x86_64-efi/gettext.mod
@@ -806,7 +814,6 @@ usr/lib/grub/x86_64-efi/gfxterm_background.mod
usr/lib/grub/x86_64-efi/gfxterm_background.module
usr/lib/grub/x86_64-efi/gfxterm_menu.mod
usr/lib/grub/x86_64-efi/gfxterm_menu.module
usr/lib/grub/x86_64-efi/gmodule.pl
usr/lib/grub/x86_64-efi/gptsync.mod
usr/lib/grub/x86_64-efi/gptsync.module
usr/lib/grub/x86_64-efi/gzio.mod
@@ -991,6 +998,8 @@ usr/lib/grub/x86_64-efi/pcidump.mod
usr/lib/grub/x86_64-efi/pcidump.module
usr/lib/grub/x86_64-efi/pgp.mod
usr/lib/grub/x86_64-efi/pgp.module
usr/lib/grub/x86_64-efi/plainmount.mod
usr/lib/grub/x86_64-efi/plainmount.module
usr/lib/grub/x86_64-efi/play.mod
usr/lib/grub/x86_64-efi/play.module
usr/lib/grub/x86_64-efi/png.mod
@@ -1173,63 +1182,6 @@ usr/share/grub/unicode.pf2
#usr/share/info/grub.info
#usr/share/info/grub.info-1
#usr/share/info/grub.info-2
#usr/share/locale/ast/LC_MESSAGES/grub.mo
#usr/share/locale/ca/LC_MESSAGES/grub.mo
#usr/share/locale/da/LC_MESSAGES/grub.mo
#usr/share/locale/de/LC_MESSAGES/grub.mo
#usr/share/locale/de@hebrew
#usr/share/locale/de@hebrew/LC_MESSAGES
#usr/share/locale/de@hebrew/LC_MESSAGES/grub.mo
#usr/share/locale/de_CH
#usr/share/locale/de_CH/LC_MESSAGES
#usr/share/locale/de_CH/LC_MESSAGES/grub.mo
#usr/share/locale/en@arabic
#usr/share/locale/en@arabic/LC_MESSAGES
#usr/share/locale/en@arabic/LC_MESSAGES/grub.mo
#usr/share/locale/en@cyrillic
#usr/share/locale/en@cyrillic/LC_MESSAGES
#usr/share/locale/en@cyrillic/LC_MESSAGES/grub.mo
#usr/share/locale/en@greek
#usr/share/locale/en@greek/LC_MESSAGES
#usr/share/locale/en@greek/LC_MESSAGES/grub.mo
#usr/share/locale/en@hebrew
#usr/share/locale/en@hebrew/LC_MESSAGES
#usr/share/locale/en@hebrew/LC_MESSAGES/grub.mo
#usr/share/locale/en@piglatin
#usr/share/locale/en@piglatin/LC_MESSAGES
#usr/share/locale/en@piglatin/LC_MESSAGES/grub.mo
#usr/share/locale/en@quot/LC_MESSAGES/grub.mo
#usr/share/locale/eo/LC_MESSAGES/grub.mo
#usr/share/locale/es/LC_MESSAGES/grub.mo
#usr/share/locale/fi/LC_MESSAGES/grub.mo
#usr/share/locale/fr/LC_MESSAGES/grub.mo
#usr/share/locale/gl/LC_MESSAGES/grub.mo
#usr/share/locale/hr/LC_MESSAGES/grub.mo
#usr/share/locale/hu/LC_MESSAGES/grub.mo
#usr/share/locale/id/LC_MESSAGES/grub.mo
#usr/share/locale/it/LC_MESSAGES/grub.mo
#usr/share/locale/ja/LC_MESSAGES/grub.mo
#usr/share/locale/ko/LC_MESSAGES/grub.mo
#usr/share/locale/lg/LC_MESSAGES/grub.mo
#usr/share/locale/lt/LC_MESSAGES/grub.mo
#usr/share/locale/nb/LC_MESSAGES/grub.mo
#usr/share/locale/nl/LC_MESSAGES/grub.mo
#usr/share/locale/pa
#usr/share/locale/pa/LC_MESSAGES
#usr/share/locale/pa/LC_MESSAGES/grub.mo
#usr/share/locale/pl/LC_MESSAGES/grub.mo
#usr/share/locale/pt/LC_MESSAGES/grub.mo
#usr/share/locale/pt_BR/LC_MESSAGES/grub.mo
#usr/share/locale/ro/LC_MESSAGES/grub.mo
#usr/share/locale/ru/LC_MESSAGES/grub.mo
#usr/share/locale/sl/LC_MESSAGES/grub.mo
#usr/share/locale/sr/LC_MESSAGES/grub.mo
#usr/share/locale/sv/LC_MESSAGES/grub.mo
#usr/share/locale/tr/LC_MESSAGES/grub.mo
#usr/share/locale/uk/LC_MESSAGES/grub.mo
#usr/share/locale/vi/LC_MESSAGES/grub.mo
#usr/share/locale/zh_CN/LC_MESSAGES/grub.mo
#usr/share/locale/zh_TW/LC_MESSAGES/grub.mo
#usr/share/man/man1/grub-editenv.1
#usr/share/man/man1/grub-file.1
#usr/share/man/man1/grub-fstest.1

View File

@@ -119,11 +119,8 @@ lib/firmware/intel-ucode/06-a6-01
lib/firmware/intel-ucode/06-a7-01
lib/firmware/intel-ucode/06-b7-01
lib/firmware/intel-ucode/06-ba-02
lib/firmware/intel-ucode/06-ba-02_DUPLICATE
lib/firmware/intel-ucode/06-ba-03
lib/firmware/intel-ucode/06-ba-03_DUPLICATE
lib/firmware/intel-ucode/06-be-00
lib/firmware/intel-ucode/06-be-00_DUPLICATE
lib/firmware/intel-ucode/06-bf-02
lib/firmware/intel-ucode/06-bf-05
lib/firmware/intel-ucode/0f-00-07

View File

@@ -1,5 +1,6 @@
lib/libhandle.so.1
lib/libhandle.so.1.0.3
#lib/udev/rules.d/64-xfs.rules
sbin/fsck.xfs
sbin/mkfs.xfs
sbin/xfs_repair
@@ -111,3 +112,4 @@ usr/sbin/xfs_spaceman
#usr/share/xfsprogs/mkfs/lts_5.15.conf
#usr/share/xfsprogs/mkfs/lts_5.4.conf
#usr/share/xfsprogs/mkfs/lts_6.1.conf
#usr/share/xfsprogs/mkfs/lts_6.6.conf

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.4
usr/lib/liblzma.so.5.4.5
#usr/lib/pkgconfig/liblzma.pc
#usr/share/doc/xz
#usr/share/doc/xz/AUTHORS

View File

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

View File

@@ -0,0 +1 @@
../../../../common/aarch64/u-boot

View File

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

View File

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

View File

@@ -0,0 +1,252 @@
lib/firmware/amd/amd_sev_fam19h_model0xh.sbin
lib/firmware/amd/amd_sev_fam19h_model1xh.sbin
lib/firmware/amdgpu/aldebaran_mec2.bin
lib/firmware/amdgpu/aldebaran_mec.bin
lib/firmware/amdgpu/aldebaran_sjt_mec2.bin
lib/firmware/amdgpu/aldebaran_sjt_mec.bin
lib/firmware/amdgpu/aldebaran_sos.bin
lib/firmware/amdgpu/beige_goby_ce.bin
lib/firmware/amdgpu/beige_goby_dmcub.bin
lib/firmware/amdgpu/beige_goby_me.bin
lib/firmware/amdgpu/beige_goby_mec2.bin
lib/firmware/amdgpu/beige_goby_mec.bin
lib/firmware/amdgpu/beige_goby_pfp.bin
lib/firmware/amdgpu/beige_goby_smc.bin
lib/firmware/amdgpu/beige_goby_sos.bin
lib/firmware/amdgpu/beige_goby_ta.bin
lib/firmware/amdgpu/beige_goby_vcn.bin
lib/firmware/amdgpu/dcn_3_1_4_dmcub.bin
lib/firmware/amdgpu/dcn_3_1_6_dmcub.bin
lib/firmware/amdgpu/dcn_3_2_0_dmcub.bin
lib/firmware/amdgpu/dcn_3_2_1_dmcub.bin
lib/firmware/amdgpu/dimgrey_cavefish_ce.bin
lib/firmware/amdgpu/dimgrey_cavefish_dmcub.bin
lib/firmware/amdgpu/dimgrey_cavefish_me.bin
lib/firmware/amdgpu/dimgrey_cavefish_mec2.bin
lib/firmware/amdgpu/dimgrey_cavefish_mec.bin
lib/firmware/amdgpu/dimgrey_cavefish_pfp.bin
lib/firmware/amdgpu/dimgrey_cavefish_smc.bin
lib/firmware/amdgpu/dimgrey_cavefish_sos.bin
lib/firmware/amdgpu/dimgrey_cavefish_ta.bin
lib/firmware/amdgpu/dimgrey_cavefish_vcn.bin
lib/firmware/amdgpu/gc_10_3_6_rlc.bin
lib/firmware/amdgpu/gc_10_3_7_rlc.bin
lib/firmware/amdgpu/gc_11_0_0_imu.bin
lib/firmware/amdgpu/gc_11_0_0_me.bin
lib/firmware/amdgpu/gc_11_0_0_mec.bin
lib/firmware/amdgpu/gc_11_0_0_mes_2.bin
lib/firmware/amdgpu/gc_11_0_0_pfp.bin
lib/firmware/amdgpu/gc_11_0_0_rlc.bin
lib/firmware/amdgpu/gc_11_0_1_me.bin
lib/firmware/amdgpu/gc_11_0_1_mec.bin
lib/firmware/amdgpu/gc_11_0_1_mes_2.bin
lib/firmware/amdgpu/gc_11_0_1_pfp.bin
lib/firmware/amdgpu/gc_11_0_1_rlc.bin
lib/firmware/amdgpu/gc_11_0_2_me.bin
lib/firmware/amdgpu/gc_11_0_2_mec.bin
lib/firmware/amdgpu/gc_11_0_2_mes_2.bin
lib/firmware/amdgpu/gc_11_0_2_pfp.bin
lib/firmware/amdgpu/gc_11_0_3_imu.bin
lib/firmware/amdgpu/gc_11_0_3_me.bin
lib/firmware/amdgpu/gc_11_0_3_mec.bin
lib/firmware/amdgpu/gc_11_0_3_mes1.bin
lib/firmware/amdgpu/gc_11_0_3_mes_2.bin
lib/firmware/amdgpu/gc_11_0_3_pfp.bin
lib/firmware/amdgpu/gc_11_0_3_rlc.bin
lib/firmware/amdgpu/gc_11_0_4_me.bin
lib/firmware/amdgpu/gc_11_0_4_mec.bin
lib/firmware/amdgpu/gc_11_0_4_mes_2.bin
lib/firmware/amdgpu/gc_11_0_4_pfp.bin
lib/firmware/amdgpu/gc_11_0_4_rlc.bin
lib/firmware/amdgpu/green_sardine_asd.bin
lib/firmware/amdgpu/green_sardine_ce.bin
lib/firmware/amdgpu/green_sardine_dmcub.bin
lib/firmware/amdgpu/green_sardine_me.bin
lib/firmware/amdgpu/green_sardine_mec2.bin
lib/firmware/amdgpu/green_sardine_mec.bin
lib/firmware/amdgpu/green_sardine_pfp.bin
lib/firmware/amdgpu/green_sardine_ta.bin
lib/firmware/amdgpu/green_sardine_vcn.bin
lib/firmware/amdgpu/navi10_asd.bin
lib/firmware/amdgpu/navi10_ta.bin
lib/firmware/amdgpu/navi10_vcn.bin
lib/firmware/amdgpu/navi12_asd.bin
lib/firmware/amdgpu/navi12_ce.bin
lib/firmware/amdgpu/navi12_me.bin
lib/firmware/amdgpu/navi12_mec2.bin
lib/firmware/amdgpu/navi12_mec.bin
lib/firmware/amdgpu/navi12_pfp.bin
lib/firmware/amdgpu/navi12_ta.bin
lib/firmware/amdgpu/navi12_vcn.bin
lib/firmware/amdgpu/navi14_asd.bin
lib/firmware/amdgpu/navi14_ta.bin
lib/firmware/amdgpu/navi14_vcn.bin
lib/firmware/amdgpu/navy_flounder_ce.bin
lib/firmware/amdgpu/navy_flounder_dmcub.bin
lib/firmware/amdgpu/navy_flounder_me.bin
lib/firmware/amdgpu/navy_flounder_mec2.bin
lib/firmware/amdgpu/navy_flounder_mec.bin
lib/firmware/amdgpu/navy_flounder_pfp.bin
lib/firmware/amdgpu/navy_flounder_smc.bin
lib/firmware/amdgpu/navy_flounder_ta.bin
lib/firmware/amdgpu/navy_flounder_vcn.bin
lib/firmware/amdgpu/picasso_asd.bin
lib/firmware/amdgpu/picasso_ce.bin
lib/firmware/amdgpu/picasso_me.bin
lib/firmware/amdgpu/picasso_mec2.bin
lib/firmware/amdgpu/picasso_mec.bin
lib/firmware/amdgpu/picasso_pfp.bin
lib/firmware/amdgpu/picasso_ta.bin
lib/firmware/amdgpu/psp_13_0_0_sos.bin
lib/firmware/amdgpu/psp_13_0_0_ta.bin
lib/firmware/amdgpu/psp_13_0_10_sos.bin
lib/firmware/amdgpu/psp_13_0_11_ta.bin
lib/firmware/amdgpu/psp_13_0_4_ta.bin
lib/firmware/amdgpu/psp_13_0_5_asd.bin
lib/firmware/amdgpu/psp_13_0_5_ta.bin
lib/firmware/amdgpu/psp_13_0_7_sos.bin
lib/firmware/amdgpu/psp_13_0_7_ta.bin
lib/firmware/amdgpu/psp_13_0_8_ta.bin
lib/firmware/amdgpu/raven2_asd.bin
lib/firmware/amdgpu/raven2_ce.bin
lib/firmware/amdgpu/raven2_me.bin
lib/firmware/amdgpu/raven2_mec2.bin
lib/firmware/amdgpu/raven2_mec.bin
lib/firmware/amdgpu/raven2_pfp.bin
lib/firmware/amdgpu/raven2_ta.bin
lib/firmware/amdgpu/raven_asd.bin
lib/firmware/amdgpu/raven_ce.bin
lib/firmware/amdgpu/raven_me.bin
lib/firmware/amdgpu/raven_mec2.bin
lib/firmware/amdgpu/raven_mec.bin
lib/firmware/amdgpu/raven_pfp.bin
lib/firmware/amdgpu/raven_ta.bin
lib/firmware/amdgpu/renoir_asd.bin
lib/firmware/amdgpu/renoir_ce.bin
lib/firmware/amdgpu/renoir_dmcub.bin
lib/firmware/amdgpu/renoir_me.bin
lib/firmware/amdgpu/renoir_mec2.bin
lib/firmware/amdgpu/renoir_mec.bin
lib/firmware/amdgpu/renoir_pfp.bin
lib/firmware/amdgpu/renoir_ta.bin
lib/firmware/amdgpu/renoir_vcn.bin
lib/firmware/amdgpu/sdma_5_2_6.bin
lib/firmware/amdgpu/sdma_5_2_7.bin
lib/firmware/amdgpu/sdma_6_0_0.bin
lib/firmware/amdgpu/sdma_6_0_1.bin
lib/firmware/amdgpu/sdma_6_0_2.bin
lib/firmware/amdgpu/sienna_cichlid_ce.bin
lib/firmware/amdgpu/sienna_cichlid_dmcub.bin
lib/firmware/amdgpu/sienna_cichlid_me.bin
lib/firmware/amdgpu/sienna_cichlid_mec2.bin
lib/firmware/amdgpu/sienna_cichlid_mec.bin
lib/firmware/amdgpu/sienna_cichlid_pfp.bin
lib/firmware/amdgpu/sienna_cichlid_rlc.bin
lib/firmware/amdgpu/sienna_cichlid_sos.bin
lib/firmware/amdgpu/sienna_cichlid_ta.bin
lib/firmware/amdgpu/sienna_cichlid_vcn.bin
lib/firmware/amdgpu/smu_13_0_0.bin
lib/firmware/amdgpu/smu_13_0_10.bin
lib/firmware/amdgpu/smu_13_0_7.bin
lib/firmware/amdgpu/vangogh_asd.bin
lib/firmware/amdgpu/vangogh_ce.bin
lib/firmware/amdgpu/vangogh_me.bin
lib/firmware/amdgpu/vangogh_mec2.bin
lib/firmware/amdgpu/vangogh_mec.bin
lib/firmware/amdgpu/vangogh_pfp.bin
lib/firmware/amdgpu/vcn_4_0_0.bin
lib/firmware/amdgpu/vcn_4_0_4.bin
lib/firmware/amdgpu/vega10_asd.bin
lib/firmware/amdgpu/vega10_ce.bin
lib/firmware/amdgpu/vega10_me.bin
lib/firmware/amdgpu/vega10_mec2.bin
lib/firmware/amdgpu/vega10_mec.bin
lib/firmware/amdgpu/vega10_pfp.bin
lib/firmware/amdgpu/vega12_asd.bin
lib/firmware/amdgpu/vega12_ce.bin
lib/firmware/amdgpu/vega12_me.bin
lib/firmware/amdgpu/vega12_mec2.bin
lib/firmware/amdgpu/vega12_mec.bin
lib/firmware/amdgpu/vega12_pfp.bin
lib/firmware/amdgpu/vega20_asd.bin
lib/firmware/amdgpu/vega20_ce.bin
lib/firmware/amdgpu/vega20_me.bin
lib/firmware/amdgpu/vega20_mec2.bin
lib/firmware/amdgpu/vega20_mec.bin
lib/firmware/amdgpu/vega20_pfp.bin
lib/firmware/amdgpu/yellow_carp_ce.bin
lib/firmware/amdgpu/yellow_carp_dmcub.bin
lib/firmware/amdgpu/yellow_carp_me.bin
lib/firmware/amdgpu/yellow_carp_mec2.bin
lib/firmware/amdgpu/yellow_carp_mec.bin
lib/firmware/amdgpu/yellow_carp_pfp.bin
lib/firmware/amdgpu/yellow_carp_sdma.bin
lib/firmware/amdgpu/yellow_carp_ta.bin
lib/firmware/amdtee/773bd96f-b83f-4d52-b12dc529b13d8543.bin
lib/firmware/amdtee/amd_pmf_v3.bin
lib/firmware/amd-ucode/microcode_amd_fam19h.bin
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bananapi-m64.txt
lib/firmware/cxgb4/t4fw-1.27.4.0.bin
lib/firmware/cxgb4/t5fw-1.27.4.0.bin
lib/firmware/cxgb4/t6fw-1.27.4.0.bin
lib/firmware/i915/adlp_guc_70.bin
lib/firmware/i915/dg2_guc_70.bin
lib/firmware/i915/mtl_dmc.bin
lib/firmware/i915/mtl_gsc_1.bin
lib/firmware/i915/mtl_guc_70.bin
lib/firmware/i915/mtl_huc_gsc.bin
lib/firmware/i915/tgl_guc_70.bin
lib/firmware/iwlwifi-cc-a0-77.ucode
lib/firmware/iwlwifi-gl-c0-fm-c0-83.ucode
lib/firmware/iwlwifi-gl-c0-fm-c0.pnvm
lib/firmware/iwlwifi-ma-b0-gf4-a0-83.ucode
lib/firmware/iwlwifi-ma-b0-gf4-a0.pnvm
lib/firmware/iwlwifi-ma-b0-gf-a0-83.ucode
lib/firmware/iwlwifi-ma-b0-gf-a0.pnvm
lib/firmware/iwlwifi-ma-b0-hr-b0-83.ucode
lib/firmware/iwlwifi-Qu-b0-hr-b0-77.ucode
lib/firmware/iwlwifi-Qu-b0-jf-b0-77.ucode
lib/firmware/iwlwifi-Qu-c0-hr-b0-77.ucode
lib/firmware/iwlwifi-Qu-c0-jf-b0-77.ucode
lib/firmware/iwlwifi-QuZ-a0-hr-b0-77.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0-84.ucode
lib/firmware/iwlwifi-so-a0-gf4-a0.pnvm
lib/firmware/iwlwifi-so-a0-gf-a0.pnvm
lib/firmware/iwlwifi-so-a0-hr-b0-83.ucode
lib/firmware/iwlwifi-so-a0-hr-b0-84.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0-84.ucode
lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm
lib/firmware/mrvl/pcie8997_wlan_v4.bin
lib/firmware/mrvl/pcieusb8997_combo_v4.bin
lib/firmware/qat_4xxx.bin
lib/firmware/qcom/a702_sqe.fw
lib/firmware/qcom/qcm2290/a702_zap.mbn
lib/firmware/qcom/qcm2290/adsp.mbn
lib/firmware/qcom/qcm2290/adspr.jsn
lib/firmware/qcom/qcm2290/adsps.jsn
lib/firmware/qcom/qcm2290/adspua.jsn
lib/firmware/qcom/qcm2290/modem.mbn
lib/firmware/qcom/qcm2290/modemr.jsn
lib/firmware/qcom/qcm2290/modemuw.jsn
lib/firmware/qcom/qcm2290/wlanmdsp.mbn
lib/firmware/qcom/qrb4210/a610_zap.mbn
lib/firmware/qcom/qrb4210/adsp.mbn
lib/firmware/qcom/qrb4210/adspr.jsn
lib/firmware/qcom/qrb4210/adsps.jsn
lib/firmware/qcom/qrb4210/adspua.jsn
lib/firmware/qcom/qrb4210/cdsp.mbn
lib/firmware/qcom/qrb4210/cdspr.jsn
lib/firmware/qcom/qrb4210/modem.mbn
lib/firmware/qcom/qrb4210/modemr.jsn
lib/firmware/qcom/qrb4210/modemuw.jsn
lib/firmware/qcom/qrb4210/wlanmdsp.mbn
lib/firmware/qcom/sm8250/adsp.mbn
lib/firmware/qcom/sm8250/cdsp.mbn
lib/firmware/qcom/venus-6.0/venus.mbn
lib/firmware/qcom/vpu-1.0/venus.mbn
lib/firmware/rtl_nic/rtl8156b-2.fw
lib/firmware/rtw89/rtw8851b_fw.bin
lib/firmware/rtw89/rtw8852b_fw-1.bin
srv/web/ipfire/cgi-bin/connections.cgi
srv/web/ipfire/cgi-bin/dhcp.cgi
srv/web/ipfire/cgi-bin/tor.cgi

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../common/iana-etc

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
../../../common/p11-kit

View File

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

View File

@@ -0,0 +1 @@
../../../../common/riscv64/grub

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,133 @@
#!/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
core=182
# 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/rc.d/init.d/ipsec stop
/etc/rc.d/init.d/squid stop
/etc/rc.d/init.d/unbound stop
/etc/rc.d/init.d/sshd stop
KVER="xxxKVERxxx"
# Backup uEnv.txt if exist
if [ -e /boot/uEnv.txt ]; then
cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
fi
# Extract files
extract_files
# Remove files
rm -rvf \
/lib/firmware/cxgb4/t4fw-1.27.3* \
/lib/firmware/cxgb4/t5fw-1.27.3* \
/lib/firmware/cxgb4/t6fw-1.27.3* \
/lib/firmware/ctefx.bin \
/lib/firmware/ctspeq.bin \
/lib/firmware/ess \
/lib/firmware/intel/ibt-* \
/lib/firmware/korg \
/lib/firmware/mediatek/BT_RAM_CODE_* \
/lib/firmware/nxp \
/lib/firmware/sb16 \
/lib/firmware/yamaha \
/lib/udev/rules.d/64-xfs.rules \
/usr/bin/gawk-5.2* \
/usr/lib/grub/{arm64-efi,i386-pc,riscv64-efi,x86_64-efi}/gmodule.pl \
/usr/lib/liblzma.so.5.4* \
/usr/lib/libqpdf.so.29.5* \
/usr/lib/libsodium.so.23*
# update linker config
ldconfig
# Update Language cache
/usr/local/bin/update-lang-cache
# Filesytem cleanup
/usr/local/bin/filesystem-cleanup
# Apply local configuration to sshd_config
/usr/local/bin/sshctrl
# Start services
/etc/init.d/unbound start
if grep -q "ENABLE_SSH=on" /var/ipfire/remote/settings; then
/etc/init.d/sshd start
fi
if [ -f /var/ipfire/proxy/enable ]; then
/etc/init.d/squid start
fi
if grep -q "ENABLED=on" /var/ipfire/vpn/settings; then
/etc/rc.d/init.d/ipsec start
fi
# Change deprecated option in tor configuration file if in usage
if pgrep tor >/dev/null; then
sed -i 's/ExitNode /ExitNodes /g' /var/ipfire/tor/torrc
/usr/local/bin/torctrl restart >/dev/null
else
sed -i 's/ExitNode /ExitNodes /g' /var/ipfire/tor/torrc
fi
# Rebuild initial ramdisks
dracut --regenerate-all --force
KVER="xxxKVERxxx"
case "$(uname -m)" in
aarch64)
mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
# dont remove initramfs because grub need this to boot.
;;
esac
# Call user update script (needed for some ARM boards)
if [ -e /boot/pakfire-kernel-update ]; then
/boot/pakfire-kernel-update ${KVER}
fi
# This update needs a reboot...
touch /var/run/need_reboot
# Finish
/etc/init.d/fireinfo start
sendprofile
# Grub version was updated, reinstall it
if [ -e /boot/grub/grub.cfg ]; then
/usr/bin/install-bootloader
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

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

@@ -141,6 +141,7 @@ usr/bin/aseqnet
usr/bin/aserver
usr/bin/axfer
usr/bin/iecset
usr/bin/nhlt-dmic-info
usr/bin/speaker-test
#usr/include/alsa
#usr/include/alsa/asoundef.h
@@ -189,6 +190,8 @@ usr/bin/speaker-test
#usr/include/alsa/sound/uapi/tlv.h
#usr/include/alsa/timer.h
#usr/include/alsa/topology.h
#usr/include/alsa/ump.h
#usr/include/alsa/ump_msg.h
#usr/include/alsa/use-case.h
#usr/include/alsa/version.h
#usr/include/asoundlib.h
@@ -572,6 +575,9 @@ usr/share/alsa/ucm2/Rockchip/max98090/max98090.conf
#usr/share/alsa/ucm2/Rockchip/rk3399-gru-sound
usr/share/alsa/ucm2/Rockchip/rk3399-gru-sound/HiFi.conf
usr/share/alsa/ucm2/Rockchip/rk3399-gru-sound/rk3399-gru-sound.conf
#usr/share/alsa/ucm2/Rockchip/rk3588-es8316
usr/share/alsa/ucm2/Rockchip/rk3588-es8316/HiFi.conf
usr/share/alsa/ucm2/Rockchip/rk3588-es8316/rk3588-es8316.conf
#usr/share/alsa/ucm2/Rockchip/rk817-sound
usr/share/alsa/ucm2/Rockchip/rk817-sound/HiFi.conf
usr/share/alsa/ucm2/Rockchip/rk817-sound/rk817-sound.conf
@@ -584,9 +590,16 @@ usr/share/alsa/ucm2/Samsung/snow/snow.conf
usr/share/alsa/ucm2/Tegra/alc5632/HiFi.conf
usr/share/alsa/ucm2/Tegra/alc5632/Record.conf
usr/share/alsa/ucm2/Tegra/alc5632/alc5632.conf
#usr/share/alsa/ucm2/Tegra/max98089
usr/share/alsa/ucm2/Tegra/max98089/lge-x3-HiFi.conf
usr/share/alsa/ucm2/Tegra/max98089/lge-x3-VoiceCall.conf
usr/share/alsa/ucm2/Tegra/max98089/lge-x3.conf
#usr/share/alsa/ucm2/Tegra/max98090
usr/share/alsa/ucm2/Tegra/max98090/HiFi.conf
usr/share/alsa/ucm2/Tegra/max98090/max98090.conf
#usr/share/alsa/ucm2/Tegra/rt5631
usr/share/alsa/ucm2/Tegra/rt5631/Asus-Transformer-HiFi.conf
usr/share/alsa/ucm2/Tegra/rt5631/Asus-Transformer.conf
#usr/share/alsa/ucm2/Tegra/rt5640
usr/share/alsa/ucm2/Tegra/rt5640/Google-Nexus-7-HiFi.conf
usr/share/alsa/ucm2/Tegra/rt5640/Google-Nexus-7.conf
@@ -596,6 +609,8 @@ usr/share/alsa/ucm2/Tegra/tegra-hda/tegra-hda.conf
#usr/share/alsa/ucm2/Tegra/wm8903
usr/share/alsa/ucm2/Tegra/wm8903/Acer-A500-HiFi.conf
usr/share/alsa/ucm2/Tegra/wm8903/Acer-A500.conf
usr/share/alsa/ucm2/Tegra/wm8903/Asus-Transformer-HiFi.conf
usr/share/alsa/ucm2/Tegra/wm8903/Asus-Transformer.conf
#usr/share/alsa/ucm2/USB-Audio
#usr/share/alsa/ucm2/USB-Audio/Arturia
usr/share/alsa/ucm2/USB-Audio/Arturia/Minifuse-12-HiFi.conf
@@ -667,6 +682,9 @@ usr/share/alsa/ucm2/USB-Audio/Steinberg/UR24C.conf
usr/share/alsa/ucm2/USB-Audio/Steinberg/UR44-HiFi.conf
usr/share/alsa/ucm2/USB-Audio/Steinberg/UR44.conf
usr/share/alsa/ucm2/USB-Audio/USB-Audio.conf
#usr/share/alsa/ucm2/USB-Audio/UniversalAudio
usr/share/alsa/ucm2/USB-Audio/UniversalAudio/Volt2-HiFi.conf
usr/share/alsa/ucm2/USB-Audio/UniversalAudio/Volt2.conf
#usr/share/alsa/ucm2/codecs
#usr/share/alsa/ucm2/codecs/cx2072x
usr/share/alsa/ucm2/codecs/cx2072x/DisableSeq.conf
@@ -836,6 +854,10 @@ usr/share/alsa/ucm2/conf.d/acp/acp.conf
usr/share/alsa/ucm2/conf.d/acp3xalc5682m98/acp3xalc5682m98.conf
#usr/share/alsa/ucm2/conf.d/acp5x
usr/share/alsa/ucm2/conf.d/acp5x/Valve-Jupiter-1.conf
#usr/share/alsa/ucm2/conf.d/acp62
usr/share/alsa/ucm2/conf.d/acp62/acp62.conf
#usr/share/alsa/ucm2/conf.d/acp63
usr/share/alsa/ucm2/conf.d/acp63/acp63.conf
#usr/share/alsa/ucm2/conf.d/acp6x
usr/share/alsa/ucm2/conf.d/acp6x/acp6x.conf
#usr/share/alsa/ucm2/conf.d/bdw-rt5677
@@ -878,6 +900,8 @@ usr/share/alsa/ucm2/conf.d/mt8365-evk/mt8365-evk.conf
usr/share/alsa/ucm2/conf.d/mtk-rt5650/mtk-rt5650.conf
#usr/share/alsa/ucm2/conf.d/rk3399-gru-soun
usr/share/alsa/ucm2/conf.d/rk3399-gru-soun/rk3399-gru-soun.conf
#usr/share/alsa/ucm2/conf.d/rk3588-es8316
usr/share/alsa/ucm2/conf.d/rk3588-es8316/rk3588-es8316.conf
#usr/share/alsa/ucm2/conf.d/rockchip_es8316
usr/share/alsa/ucm2/conf.d/rockchip_es8316/rockchip_es8316.conf
#usr/share/alsa/ucm2/conf.d/sc8280xp
@@ -915,9 +939,18 @@ usr/share/alsa/ucm2/conf.d/sof-soundwire/sof-soundwire.conf
usr/share/alsa/ucm2/conf.d/tegra-hda/tegra-hda.conf
usr/share/alsa/ucm2/conf.d/tegra/ASUS Google Nexus 7 ALC5642.conf
usr/share/alsa/ucm2/conf.d/tegra/Acer Iconia Tab A500 WM8903.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus EeePad Slider WM8903.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus EeePad Transformer WM8903.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus Transformer Infinity TF700T RT5631.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus Transformer Pad TF300T WM8903.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus Transformer Pad TF300TG RT5631.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus Transformer Pad TF300TL RT5631.conf
usr/share/alsa/ucm2/conf.d/tegra/Asus Transformer Prime TF201 RT5631.conf
usr/share/alsa/ucm2/conf.d/tegra/Compal PAZ00.conf
usr/share/alsa/ucm2/conf.d/tegra/GoogleNyanBig.conf
usr/share/alsa/ucm2/conf.d/tegra/GoogleNyanBlaze.conf
usr/share/alsa/ucm2/conf.d/tegra/LG Optimus 4X HD MAX98089.conf
usr/share/alsa/ucm2/conf.d/tegra/LG Optimus Vu MAX98089.conf
#usr/share/alsa/ucm2/conf.virt.d
usr/share/alsa/ucm2/conf.virt.d/.gitignore
#usr/share/alsa/ucm2/lib
@@ -963,6 +996,7 @@ usr/share/alsa/ucm2/ucm.conf
#usr/share/locale/ja/LC_MESSAGES/alsaconf.mo
#usr/share/locale/ka/LC_MESSAGES/alsa-utils.mo
#usr/share/locale/ka/LC_MESSAGES/alsaconf.mo
#usr/share/locale/ko/LC_MESSAGES/alsa-utils.mo
#usr/share/locale/ru/LC_MESSAGES/alsaconf.mo
#usr/share/locale/sk/LC_MESSAGES/alsa-utils.mo
#usr/share/man/fr/man8/alsaconf.8
@@ -984,6 +1018,7 @@ usr/share/alsa/ucm2/ucm.conf
#usr/share/man/man1/axfer-transfer.1
#usr/share/man/man1/axfer.1
#usr/share/man/man1/iecset.1
#usr/share/man/man1/nhlt-dmic-info.1
#usr/share/man/man1/speaker-test.1
#usr/share/man/man8/alsaconf.8
#usr/share/sounds

View File

@@ -69,6 +69,7 @@ usr/sbin/clamd
#usr/share/doc/ClamAV/html/faq/faq-eol.html
#usr/share/doc/ClamAV/html/faq/faq-freshclam.html
#usr/share/doc/ClamAV/html/faq/faq-ignore.html
#usr/share/doc/ClamAV/html/faq/faq-malware-fp-reports.html
#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

View File

@@ -40,7 +40,7 @@ usr/bin/dbus-uuidgen
#usr/lib/libdbus-1.la
#usr/lib/libdbus-1.so
usr/lib/libdbus-1.so.3
usr/lib/libdbus-1.so.3.32.2
usr/lib/libdbus-1.so.3.32.4
#usr/lib/pkgconfig/dbus-1.pc
usr/libexec/dbus-daemon-launch-helper
#usr/share/dbus-1

View File

@@ -11,6 +11,7 @@ usr/bin/eu-objdump
usr/bin/eu-ranlib
usr/bin/eu-readelf
usr/bin/eu-size
usr/bin/eu-srcfiles
usr/bin/eu-stack
usr/bin/eu-strings
usr/bin/eu-strip
@@ -27,15 +28,15 @@ usr/bin/eu-unstrip
#usr/include/gelf.h
#usr/include/libelf.h
#usr/include/nlist.h
usr/lib/libasm-0.189.so
usr/lib/libasm-0.190.so
#usr/lib/libasm.a
#usr/lib/libasm.so
usr/lib/libasm.so.1
usr/lib/libdw-0.189.so
usr/lib/libdw-0.190.so
#usr/lib/libdw.a
#usr/lib/libdw.so
usr/lib/libdw.so.1
usr/lib/libelf-0.189.so
usr/lib/libelf-0.190.so
#usr/lib/libelf.a
#usr/lib/libelf.so
usr/lib/libelf.so.1
@@ -50,6 +51,7 @@ usr/lib/libelf.so.1
#usr/share/locale/uk/LC_MESSAGES/elfutils.mo
#usr/share/man/man1/eu-elfclassify.1
#usr/share/man/man1/eu-readelf.1
#usr/share/man/man1/eu-srcfiles.1
#usr/share/man/man3/elf_begin.3
#usr/share/man/man3/elf_clone.3
#usr/share/man/man3/elf_getdata.3

View File

@@ -179,40 +179,6 @@ usr/lib/libswscale.so.7.1.100
#usr/lib/pkgconfig/libpostproc.pc
#usr/lib/pkgconfig/libswresample.pc
#usr/lib/pkgconfig/libswscale.pc
#usr/share/doc/ffmpeg
#usr/share/doc/ffmpeg/bootstrap.min.css
#usr/share/doc/ffmpeg/default.css
#usr/share/doc/ffmpeg/developer.html
#usr/share/doc/ffmpeg/faq.html
#usr/share/doc/ffmpeg/fate.html
#usr/share/doc/ffmpeg/ffmpeg-all.html
#usr/share/doc/ffmpeg/ffmpeg-bitstream-filters.html
#usr/share/doc/ffmpeg/ffmpeg-codecs.html
#usr/share/doc/ffmpeg/ffmpeg-devices.html
#usr/share/doc/ffmpeg/ffmpeg-filters.html
#usr/share/doc/ffmpeg/ffmpeg-formats.html
#usr/share/doc/ffmpeg/ffmpeg-protocols.html
#usr/share/doc/ffmpeg/ffmpeg-resampler.html
#usr/share/doc/ffmpeg/ffmpeg-scaler.html
#usr/share/doc/ffmpeg/ffmpeg-utils.html
#usr/share/doc/ffmpeg/ffmpeg.html
#usr/share/doc/ffmpeg/ffplay-all.html
#usr/share/doc/ffmpeg/ffplay.html
#usr/share/doc/ffmpeg/ffprobe-all.html
#usr/share/doc/ffmpeg/ffprobe.html
#usr/share/doc/ffmpeg/general.html
#usr/share/doc/ffmpeg/git-howto.html
#usr/share/doc/ffmpeg/libavcodec.html
#usr/share/doc/ffmpeg/libavdevice.html
#usr/share/doc/ffmpeg/libavfilter.html
#usr/share/doc/ffmpeg/libavformat.html
#usr/share/doc/ffmpeg/libavutil.html
#usr/share/doc/ffmpeg/libswresample.html
#usr/share/doc/ffmpeg/libswscale.html
#usr/share/doc/ffmpeg/mailing-list-faq.html
#usr/share/doc/ffmpeg/nut.html
#usr/share/doc/ffmpeg/platform.html
#usr/share/doc/ffmpeg/style.min.css
#usr/share/ffmpeg
#usr/share/ffmpeg/examples
#usr/share/ffmpeg/examples/Makefile
@@ -247,25 +213,3 @@ usr/lib/libswscale.so.7.1.100
#usr/share/ffmpeg/libvpx-360p.ffpreset
#usr/share/ffmpeg/libvpx-720p.ffpreset
#usr/share/ffmpeg/libvpx-720p50_60.ffpreset
#usr/share/man/man1/ffmpeg-all.1
#usr/share/man/man1/ffmpeg-bitstream-filters.1
#usr/share/man/man1/ffmpeg-codecs.1
#usr/share/man/man1/ffmpeg-devices.1
#usr/share/man/man1/ffmpeg-filters.1
#usr/share/man/man1/ffmpeg-formats.1
#usr/share/man/man1/ffmpeg-protocols.1
#usr/share/man/man1/ffmpeg-resampler.1
#usr/share/man/man1/ffmpeg-scaler.1
#usr/share/man/man1/ffmpeg-utils.1
#usr/share/man/man1/ffmpeg.1
#usr/share/man/man1/ffplay-all.1
#usr/share/man/man1/ffplay.1
#usr/share/man/man1/ffprobe-all.1
#usr/share/man/man1/ffprobe.1
#usr/share/man/man3/libavcodec.3
#usr/share/man/man3/libavdevice.3
#usr/share/man/man3/libavfilter.3
#usr/share/man/man3/libavformat.3
#usr/share/man/man3/libavutil.3
#usr/share/man/man3/libswresample.3
#usr/share/man/man3/libswscale.3

View File

@@ -25,170 +25,170 @@ usr/bin/ps2ps
usr/bin/ps2ps2
usr/bin/unix-lpr.sh
#usr/share/doc/ghostscript
#usr/share/doc/ghostscript/10.01.2
#usr/share/doc/ghostscript/10.01.2/COPYING
#usr/share/doc/ghostscript/10.01.2/GS9_Color_Management.pdf
#usr/share/doc/ghostscript/10.01.2/Ghostscript.pdf
#usr/share/doc/ghostscript/10.01.2/News.htm
#usr/share/doc/ghostscript/10.02.1
#usr/share/doc/ghostscript/10.02.1/COPYING
#usr/share/doc/ghostscript/10.02.1/GS9_Color_Management.pdf
#usr/share/doc/ghostscript/10.02.1/Ghostscript.pdf
#usr/share/doc/ghostscript/10.02.1/News.html
#usr/share/ghostscript
#usr/share/ghostscript/10.01.2
#usr/share/ghostscript/10.01.2/lib
#usr/share/ghostscript/10.01.2/lib/PDFA_def.ps
#usr/share/ghostscript/10.01.2/lib/PDFX_def.ps
#usr/share/ghostscript/10.01.2/lib/PM760p.upp
#usr/share/ghostscript/10.01.2/lib/PM760pl.upp
#usr/share/ghostscript/10.01.2/lib/PM820p.upp
#usr/share/ghostscript/10.01.2/lib/PM820pl.upp
#usr/share/ghostscript/10.01.2/lib/Stc670p.upp
#usr/share/ghostscript/10.01.2/lib/Stc670pl.upp
#usr/share/ghostscript/10.01.2/lib/Stc680p.upp
#usr/share/ghostscript/10.01.2/lib/Stc680pl.upp
#usr/share/ghostscript/10.01.2/lib/Stc740p.upp
#usr/share/ghostscript/10.01.2/lib/Stc740pl.upp
#usr/share/ghostscript/10.01.2/lib/Stc760p.upp
#usr/share/ghostscript/10.01.2/lib/Stc760pl.upp
#usr/share/ghostscript/10.01.2/lib/Stc777p.upp
#usr/share/ghostscript/10.01.2/lib/Stc777pl.upp
#usr/share/ghostscript/10.01.2/lib/Stp720p.upp
#usr/share/ghostscript/10.01.2/lib/Stp720pl.upp
#usr/share/ghostscript/10.01.2/lib/Stp870p.upp
#usr/share/ghostscript/10.01.2/lib/Stp870pl.upp
#usr/share/ghostscript/10.01.2/lib/acctest.ps
#usr/share/ghostscript/10.01.2/lib/align.ps
#usr/share/ghostscript/10.01.2/lib/bj8.rpd
#usr/share/ghostscript/10.01.2/lib/bj8gc12f.upp
#usr/share/ghostscript/10.01.2/lib/bj8hg12f.upp
#usr/share/ghostscript/10.01.2/lib/bj8oh06n.upp
#usr/share/ghostscript/10.01.2/lib/bj8pa06n.upp
#usr/share/ghostscript/10.01.2/lib/bj8pp12f.upp
#usr/share/ghostscript/10.01.2/lib/bj8ts06n.upp
#usr/share/ghostscript/10.01.2/lib/bjc6000a1.upp
#usr/share/ghostscript/10.01.2/lib/bjc6000b1.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a0.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a1.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a2.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a3.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a4.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a5.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a6.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a7.upp
#usr/share/ghostscript/10.01.2/lib/bjc610a8.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b1.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b2.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b3.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b4.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b6.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b7.upp
#usr/share/ghostscript/10.01.2/lib/bjc610b8.upp
#usr/share/ghostscript/10.01.2/lib/caption.ps
#usr/share/ghostscript/10.01.2/lib/cbjc600.ppd
#usr/share/ghostscript/10.01.2/lib/cbjc800.ppd
#usr/share/ghostscript/10.01.2/lib/cdj550.upp
#usr/share/ghostscript/10.01.2/lib/cdj690.upp
#usr/share/ghostscript/10.01.2/lib/cdj690ec.upp
#usr/share/ghostscript/10.01.2/lib/cid2code.ps
#usr/share/ghostscript/10.01.2/lib/dnj750c.upp
#usr/share/ghostscript/10.01.2/lib/dnj750m.upp
#usr/share/ghostscript/10.01.2/lib/docie.ps
#usr/share/ghostscript/10.01.2/lib/font2pcl.ps
#usr/share/ghostscript/10.01.2/lib/ghostpdf.ppd
#usr/share/ghostscript/10.01.2/lib/gs_ce_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_css_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_il2_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_kanji.ps
#usr/share/ghostscript/10.01.2/lib/gs_ksb_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_l.xbm
#usr/share/ghostscript/10.01.2/lib/gs_l.xpm
#usr/share/ghostscript/10.01.2/lib/gs_l_m.xbm
#usr/share/ghostscript/10.01.2/lib/gs_lgo_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_lgx_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_m.xbm
#usr/share/ghostscript/10.01.2/lib/gs_m.xpm
#usr/share/ghostscript/10.01.2/lib/gs_m_m.xbm
#usr/share/ghostscript/10.01.2/lib/gs_s.xbm
#usr/share/ghostscript/10.01.2/lib/gs_s.xpm
#usr/share/ghostscript/10.01.2/lib/gs_s_m.xbm
#usr/share/ghostscript/10.01.2/lib/gs_t.xbm
#usr/share/ghostscript/10.01.2/lib/gs_t.xpm
#usr/share/ghostscript/10.01.2/lib/gs_t_m.xbm
#usr/share/ghostscript/10.01.2/lib/gs_wl1_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_wl2_e.ps
#usr/share/ghostscript/10.01.2/lib/gs_wl5_e.ps
#usr/share/ghostscript/10.01.2/lib/gslp.ps
#usr/share/ghostscript/10.01.2/lib/gsnup.ps
#usr/share/ghostscript/10.01.2/lib/ht_ccsto.ps
#usr/share/ghostscript/10.01.2/lib/image-qa.ps
#usr/share/ghostscript/10.01.2/lib/jispaper.ps
#usr/share/ghostscript/10.01.2/lib/landscap.ps
#usr/share/ghostscript/10.01.2/lib/lines.ps
#usr/share/ghostscript/10.01.2/lib/mkcidfm.ps
#usr/share/ghostscript/10.01.2/lib/necp2x.upp
#usr/share/ghostscript/10.01.2/lib/necp2x6.upp
#usr/share/ghostscript/10.01.2/lib/pdf2dsc.ps
#usr/share/ghostscript/10.01.2/lib/pdf_info.ps
#usr/share/ghostscript/10.01.2/lib/pf2afm.ps
#usr/share/ghostscript/10.01.2/lib/pfbtopfa.ps
#usr/share/ghostscript/10.01.2/lib/ppath.ps
#usr/share/ghostscript/10.01.2/lib/pphs.ps
#usr/share/ghostscript/10.01.2/lib/prfont.ps
#usr/share/ghostscript/10.01.2/lib/printafm.ps
#usr/share/ghostscript/10.01.2/lib/ps2ai.ps
#usr/share/ghostscript/10.01.2/lib/ps2epsi.ps
#usr/share/ghostscript/10.01.2/lib/ras1.upp
#usr/share/ghostscript/10.01.2/lib/ras24.upp
#usr/share/ghostscript/10.01.2/lib/ras3.upp
#usr/share/ghostscript/10.01.2/lib/ras32.upp
#usr/share/ghostscript/10.01.2/lib/ras4.upp
#usr/share/ghostscript/10.01.2/lib/ras8m.upp
#usr/share/ghostscript/10.01.2/lib/rollconv.ps
#usr/share/ghostscript/10.01.2/lib/s400a1.upp
#usr/share/ghostscript/10.01.2/lib/s400b1.upp
#usr/share/ghostscript/10.01.2/lib/sharp.upp
#usr/share/ghostscript/10.01.2/lib/sipixa6.upp
#usr/share/ghostscript/10.01.2/lib/st640ih.upp
#usr/share/ghostscript/10.01.2/lib/st640ihg.upp
#usr/share/ghostscript/10.01.2/lib/st640p.upp
#usr/share/ghostscript/10.01.2/lib/st640pg.upp
#usr/share/ghostscript/10.01.2/lib/st640pl.upp
#usr/share/ghostscript/10.01.2/lib/st640plg.upp
#usr/share/ghostscript/10.01.2/lib/stc.upp
#usr/share/ghostscript/10.01.2/lib/stc1520h.upp
#usr/share/ghostscript/10.01.2/lib/stc2.upp
#usr/share/ghostscript/10.01.2/lib/stc200_h.upp
#usr/share/ghostscript/10.01.2/lib/stc2_h.upp
#usr/share/ghostscript/10.01.2/lib/stc2s_h.upp
#usr/share/ghostscript/10.01.2/lib/stc300.upp
#usr/share/ghostscript/10.01.2/lib/stc300bl.upp
#usr/share/ghostscript/10.01.2/lib/stc300bm.upp
#usr/share/ghostscript/10.01.2/lib/stc500p.upp
#usr/share/ghostscript/10.01.2/lib/stc500ph.upp
#usr/share/ghostscript/10.01.2/lib/stc600ih.upp
#usr/share/ghostscript/10.01.2/lib/stc600p.upp
#usr/share/ghostscript/10.01.2/lib/stc600pl.upp
#usr/share/ghostscript/10.01.2/lib/stc640p.upp
#usr/share/ghostscript/10.01.2/lib/stc740ih.upp
#usr/share/ghostscript/10.01.2/lib/stc800ih.upp
#usr/share/ghostscript/10.01.2/lib/stc800p.upp
#usr/share/ghostscript/10.01.2/lib/stc800pl.upp
#usr/share/ghostscript/10.01.2/lib/stc_h.upp
#usr/share/ghostscript/10.01.2/lib/stc_l.upp
#usr/share/ghostscript/10.01.2/lib/stcany.upp
#usr/share/ghostscript/10.01.2/lib/stcany_h.upp
#usr/share/ghostscript/10.01.2/lib/stcinfo.ps
#usr/share/ghostscript/10.01.2/lib/stcolor.ps
#usr/share/ghostscript/10.01.2/lib/stocht.ps
#usr/share/ghostscript/10.01.2/lib/traceimg.ps
#usr/share/ghostscript/10.01.2/lib/traceop.ps
#usr/share/ghostscript/10.01.2/lib/uninfo.ps
#usr/share/ghostscript/10.01.2/lib/viewcmyk.ps
#usr/share/ghostscript/10.01.2/lib/viewgif.ps
#usr/share/ghostscript/10.01.2/lib/viewjpeg.ps
#usr/share/ghostscript/10.01.2/lib/viewmiff.ps
#usr/share/ghostscript/10.01.2/lib/viewpbm.ps
#usr/share/ghostscript/10.01.2/lib/viewpcx.ps
#usr/share/ghostscript/10.01.2/lib/viewps2a.ps
#usr/share/ghostscript/10.01.2/lib/winmaps.ps
#usr/share/ghostscript/10.01.2/lib/zeroline.ps
#usr/share/ghostscript/10.02.1
#usr/share/ghostscript/10.02.1/lib
#usr/share/ghostscript/10.02.1/lib/PDFA_def.ps
#usr/share/ghostscript/10.02.1/lib/PDFX_def.ps
#usr/share/ghostscript/10.02.1/lib/PM760p.upp
#usr/share/ghostscript/10.02.1/lib/PM760pl.upp
#usr/share/ghostscript/10.02.1/lib/PM820p.upp
#usr/share/ghostscript/10.02.1/lib/PM820pl.upp
#usr/share/ghostscript/10.02.1/lib/Stc670p.upp
#usr/share/ghostscript/10.02.1/lib/Stc670pl.upp
#usr/share/ghostscript/10.02.1/lib/Stc680p.upp
#usr/share/ghostscript/10.02.1/lib/Stc680pl.upp
#usr/share/ghostscript/10.02.1/lib/Stc740p.upp
#usr/share/ghostscript/10.02.1/lib/Stc740pl.upp
#usr/share/ghostscript/10.02.1/lib/Stc760p.upp
#usr/share/ghostscript/10.02.1/lib/Stc760pl.upp
#usr/share/ghostscript/10.02.1/lib/Stc777p.upp
#usr/share/ghostscript/10.02.1/lib/Stc777pl.upp
#usr/share/ghostscript/10.02.1/lib/Stp720p.upp
#usr/share/ghostscript/10.02.1/lib/Stp720pl.upp
#usr/share/ghostscript/10.02.1/lib/Stp870p.upp
#usr/share/ghostscript/10.02.1/lib/Stp870pl.upp
#usr/share/ghostscript/10.02.1/lib/acctest.ps
#usr/share/ghostscript/10.02.1/lib/align.ps
#usr/share/ghostscript/10.02.1/lib/bj8.rpd
#usr/share/ghostscript/10.02.1/lib/bj8gc12f.upp
#usr/share/ghostscript/10.02.1/lib/bj8hg12f.upp
#usr/share/ghostscript/10.02.1/lib/bj8oh06n.upp
#usr/share/ghostscript/10.02.1/lib/bj8pa06n.upp
#usr/share/ghostscript/10.02.1/lib/bj8pp12f.upp
#usr/share/ghostscript/10.02.1/lib/bj8ts06n.upp
#usr/share/ghostscript/10.02.1/lib/bjc6000a1.upp
#usr/share/ghostscript/10.02.1/lib/bjc6000b1.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a0.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a1.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a2.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a3.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a4.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a5.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a6.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a7.upp
#usr/share/ghostscript/10.02.1/lib/bjc610a8.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b1.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b2.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b3.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b4.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b6.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b7.upp
#usr/share/ghostscript/10.02.1/lib/bjc610b8.upp
#usr/share/ghostscript/10.02.1/lib/caption.ps
#usr/share/ghostscript/10.02.1/lib/cbjc600.ppd
#usr/share/ghostscript/10.02.1/lib/cbjc800.ppd
#usr/share/ghostscript/10.02.1/lib/cdj550.upp
#usr/share/ghostscript/10.02.1/lib/cdj690.upp
#usr/share/ghostscript/10.02.1/lib/cdj690ec.upp
#usr/share/ghostscript/10.02.1/lib/cid2code.ps
#usr/share/ghostscript/10.02.1/lib/dnj750c.upp
#usr/share/ghostscript/10.02.1/lib/dnj750m.upp
#usr/share/ghostscript/10.02.1/lib/docie.ps
#usr/share/ghostscript/10.02.1/lib/font2pcl.ps
#usr/share/ghostscript/10.02.1/lib/ghostpdf.ppd
#usr/share/ghostscript/10.02.1/lib/gs_ce_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_css_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_il2_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_kanji.ps
#usr/share/ghostscript/10.02.1/lib/gs_ksb_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_l.xbm
#usr/share/ghostscript/10.02.1/lib/gs_l.xpm
#usr/share/ghostscript/10.02.1/lib/gs_l_m.xbm
#usr/share/ghostscript/10.02.1/lib/gs_lgo_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_lgx_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_m.xbm
#usr/share/ghostscript/10.02.1/lib/gs_m.xpm
#usr/share/ghostscript/10.02.1/lib/gs_m_m.xbm
#usr/share/ghostscript/10.02.1/lib/gs_s.xbm
#usr/share/ghostscript/10.02.1/lib/gs_s.xpm
#usr/share/ghostscript/10.02.1/lib/gs_s_m.xbm
#usr/share/ghostscript/10.02.1/lib/gs_t.xbm
#usr/share/ghostscript/10.02.1/lib/gs_t.xpm
#usr/share/ghostscript/10.02.1/lib/gs_t_m.xbm
#usr/share/ghostscript/10.02.1/lib/gs_wl1_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_wl2_e.ps
#usr/share/ghostscript/10.02.1/lib/gs_wl5_e.ps
#usr/share/ghostscript/10.02.1/lib/gslp.ps
#usr/share/ghostscript/10.02.1/lib/gsnup.ps
#usr/share/ghostscript/10.02.1/lib/ht_ccsto.ps
#usr/share/ghostscript/10.02.1/lib/image-qa.ps
#usr/share/ghostscript/10.02.1/lib/jispaper.ps
#usr/share/ghostscript/10.02.1/lib/landscap.ps
#usr/share/ghostscript/10.02.1/lib/lines.ps
#usr/share/ghostscript/10.02.1/lib/mkcidfm.ps
#usr/share/ghostscript/10.02.1/lib/necp2x.upp
#usr/share/ghostscript/10.02.1/lib/necp2x6.upp
#usr/share/ghostscript/10.02.1/lib/pdf2dsc.ps
#usr/share/ghostscript/10.02.1/lib/pdf_info.ps
#usr/share/ghostscript/10.02.1/lib/pf2afm.ps
#usr/share/ghostscript/10.02.1/lib/pfbtopfa.ps
#usr/share/ghostscript/10.02.1/lib/ppath.ps
#usr/share/ghostscript/10.02.1/lib/pphs.ps
#usr/share/ghostscript/10.02.1/lib/prfont.ps
#usr/share/ghostscript/10.02.1/lib/printafm.ps
#usr/share/ghostscript/10.02.1/lib/ps2ai.ps
#usr/share/ghostscript/10.02.1/lib/ps2epsi.ps
#usr/share/ghostscript/10.02.1/lib/ras1.upp
#usr/share/ghostscript/10.02.1/lib/ras24.upp
#usr/share/ghostscript/10.02.1/lib/ras3.upp
#usr/share/ghostscript/10.02.1/lib/ras32.upp
#usr/share/ghostscript/10.02.1/lib/ras4.upp
#usr/share/ghostscript/10.02.1/lib/ras8m.upp
#usr/share/ghostscript/10.02.1/lib/rollconv.ps
#usr/share/ghostscript/10.02.1/lib/s400a1.upp
#usr/share/ghostscript/10.02.1/lib/s400b1.upp
#usr/share/ghostscript/10.02.1/lib/sharp.upp
#usr/share/ghostscript/10.02.1/lib/sipixa6.upp
#usr/share/ghostscript/10.02.1/lib/st640ih.upp
#usr/share/ghostscript/10.02.1/lib/st640ihg.upp
#usr/share/ghostscript/10.02.1/lib/st640p.upp
#usr/share/ghostscript/10.02.1/lib/st640pg.upp
#usr/share/ghostscript/10.02.1/lib/st640pl.upp
#usr/share/ghostscript/10.02.1/lib/st640plg.upp
#usr/share/ghostscript/10.02.1/lib/stc.upp
#usr/share/ghostscript/10.02.1/lib/stc1520h.upp
#usr/share/ghostscript/10.02.1/lib/stc2.upp
#usr/share/ghostscript/10.02.1/lib/stc200_h.upp
#usr/share/ghostscript/10.02.1/lib/stc2_h.upp
#usr/share/ghostscript/10.02.1/lib/stc2s_h.upp
#usr/share/ghostscript/10.02.1/lib/stc300.upp
#usr/share/ghostscript/10.02.1/lib/stc300bl.upp
#usr/share/ghostscript/10.02.1/lib/stc300bm.upp
#usr/share/ghostscript/10.02.1/lib/stc500p.upp
#usr/share/ghostscript/10.02.1/lib/stc500ph.upp
#usr/share/ghostscript/10.02.1/lib/stc600ih.upp
#usr/share/ghostscript/10.02.1/lib/stc600p.upp
#usr/share/ghostscript/10.02.1/lib/stc600pl.upp
#usr/share/ghostscript/10.02.1/lib/stc640p.upp
#usr/share/ghostscript/10.02.1/lib/stc740ih.upp
#usr/share/ghostscript/10.02.1/lib/stc800ih.upp
#usr/share/ghostscript/10.02.1/lib/stc800p.upp
#usr/share/ghostscript/10.02.1/lib/stc800pl.upp
#usr/share/ghostscript/10.02.1/lib/stc_h.upp
#usr/share/ghostscript/10.02.1/lib/stc_l.upp
#usr/share/ghostscript/10.02.1/lib/stcany.upp
#usr/share/ghostscript/10.02.1/lib/stcany_h.upp
#usr/share/ghostscript/10.02.1/lib/stcinfo.ps
#usr/share/ghostscript/10.02.1/lib/stcolor.ps
#usr/share/ghostscript/10.02.1/lib/stocht.ps
#usr/share/ghostscript/10.02.1/lib/traceimg.ps
#usr/share/ghostscript/10.02.1/lib/traceop.ps
#usr/share/ghostscript/10.02.1/lib/uninfo.ps
#usr/share/ghostscript/10.02.1/lib/viewcmyk.ps
#usr/share/ghostscript/10.02.1/lib/viewgif.ps
#usr/share/ghostscript/10.02.1/lib/viewjpeg.ps
#usr/share/ghostscript/10.02.1/lib/viewmiff.ps
#usr/share/ghostscript/10.02.1/lib/viewpbm.ps
#usr/share/ghostscript/10.02.1/lib/viewpcx.ps
#usr/share/ghostscript/10.02.1/lib/viewps2a.ps
#usr/share/ghostscript/10.02.1/lib/winmaps.ps
#usr/share/ghostscript/10.02.1/lib/zeroline.ps
#usr/share/ghostscript/fonts
#usr/share/ghostscript/fonts/COPYING
#usr/share/ghostscript/fonts/ChangeLog

View File

@@ -11,6 +11,8 @@ usr/bin/xminicom
#usr/share/locale/hu/LC_MESSAGES/minicom.mo
#usr/share/locale/id/LC_MESSAGES/minicom.mo
#usr/share/locale/ja/LC_MESSAGES/minicom.mo
#usr/share/locale/ka/LC_MESSAGES/minicom.mo
#usr/share/locale/ko/LC_MESSAGES/minicom.mo
#usr/share/locale/nb/LC_MESSAGES/minicom.mo
#usr/share/locale/pl/LC_MESSAGES/minicom.mo
#usr/share/locale/pt_BR/LC_MESSAGES/minicom.mo

View File

@@ -52,6 +52,7 @@ usr/bin/riello_ser
usr/bin/riello_usb
usr/bin/safenet
usr/bin/skel
usr/bin/sms_ser
usr/bin/snmp-ups
usr/bin/solis
usr/bin/tripplite
@@ -68,95 +69,26 @@ usr/bin/victronups
#usr/lib/libnutclient.la
#usr/lib/libnutclient.so
usr/lib/libnutclient.so.2
usr/lib/libnutclient.so.2.0.0
usr/lib/libnutclient.so.2.0.2
#usr/lib/libnutclientstub.la
#usr/lib/libnutclientstub.so
usr/lib/libnutclientstub.so.1
usr/lib/libnutclientstub.so.1.0.0
usr/lib/libnutclientstub.so.1.0.1
#usr/lib/libnutscan.la
#usr/lib/libnutscan.so
usr/lib/libnutscan.so.2
usr/lib/libnutscan.so.2.0.0
usr/lib/libnutscan.so.2.0.2
#usr/lib/libupsclient.la
#usr/lib/libupsclient.so
usr/lib/libupsclient.so.6
usr/lib/libupsclient.so.6.0.0
usr/lib/libupsclient.so.6.0.1
#usr/lib/python3.10/site-packages/PyNUT.py
#usr/lib/python3.10/site-packages/test_nutclient.py
usr/sbin/upsd
usr/sbin/upsdrvctl
usr/sbin/upsmon
usr/sbin/upssched
usr/share/cmdvartab
usr/share/driver.list
#usr/share/man/man5/nut.conf.5
#usr/share/man/man5/ups.conf.5
#usr/share/man/man5/upsd.conf.5
#usr/share/man/man5/upsd.users.5
#usr/share/man/man5/upsmon.conf.5
#usr/share/man/man5/upssched.conf.5
#usr/share/man/man8/al175.8
#usr/share/man/man8/apcsmart-old.8
#usr/share/man/man8/apcsmart.8
#usr/share/man/man8/apcupsd-ups.8
#usr/share/man/man8/bcmxcp.8
#usr/share/man/man8/bcmxcp_usb.8
#usr/share/man/man8/belkin.8
#usr/share/man/man8/belkinunv.8
#usr/share/man/man8/bestfcom.8
#usr/share/man/man8/bestfortress.8
#usr/share/man/man8/bestuferrups.8
#usr/share/man/man8/bestups.8
#usr/share/man/man8/blazer_ser.8
#usr/share/man/man8/blazer_usb.8
#usr/share/man/man8/clone.8
#usr/share/man/man8/dummy-ups.8
#usr/share/man/man8/etapro.8
#usr/share/man/man8/everups.8
#usr/share/man/man8/gamatronic.8
#usr/share/man/man8/genericups.8
#usr/share/man/man8/isbmex.8
#usr/share/man/man8/ivtscd.8
#usr/share/man/man8/liebert-esp2.8
#usr/share/man/man8/liebert.8
#usr/share/man/man8/masterguard.8
#usr/share/man/man8/metasys.8
#usr/share/man/man8/mge-shut.8
#usr/share/man/man8/mge-utalk.8
#usr/share/man/man8/microdowell.8
#usr/share/man/man8/microsol-apc.8
#usr/share/man/man8/nut-driver-enumerator.8
#usr/share/man/man8/nut-recorder.8
#usr/share/man/man8/nut-scanner.8
#usr/share/man/man8/nutdrv_atcl_usb.8
#usr/share/man/man8/nutdrv_qx.8
#usr/share/man/man8/nutdrv_siemens_sitop.8
#usr/share/man/man8/nutupsdrv.8
#usr/share/man/man8/oneac.8
#usr/share/man/man8/optiups.8
#usr/share/man/man8/powercom.8
#usr/share/man/man8/powerpanel.8
#usr/share/man/man8/rhino.8
#usr/share/man/man8/richcomm_usb.8
#usr/share/man/man8/riello_ser.8
#usr/share/man/man8/riello_usb.8
#usr/share/man/man8/safenet.8
#usr/share/man/man8/snmp-ups.8
#usr/share/man/man8/solis.8
#usr/share/man/man8/tripplite.8
#usr/share/man/man8/tripplite_usb.8
#usr/share/man/man8/tripplitesu.8
#usr/share/man/man8/upsc.8
#usr/share/man/man8/upscmd.8
#usr/share/man/man8/upscode2.8
#usr/share/man/man8/upsd.8
#usr/share/man/man8/upsdrvctl.8
#usr/share/man/man8/upsdrvsvcctl.8
#usr/share/man/man8/upslog.8
#usr/share/man/man8/upsmon.8
#usr/share/man/man8/upsrw.8
#usr/share/man/man8/upssched.8
#usr/share/man/man8/usbhid-ups.8
#usr/share/man/man8/victronups.8
#usr/share/solaris-init
#usr/share/solaris-init/nut
var/ipfire/backup/addons/includes/nut
var/state/ups

View File

@@ -82,7 +82,7 @@
#usr/lib/cmake/SDL2/sdl2-config-version.cmake
#usr/lib/cmake/SDL2/sdl2-config.cmake
usr/lib/libSDL2-2.0.so.0
usr/lib/libSDL2-2.0.so.0.2800.3
usr/lib/libSDL2-2.0.so.0.2800.5
#usr/lib/libSDL2.la
usr/lib/libSDL2.so
#usr/lib/libSDL2_test.a

View File

@@ -752,7 +752,7 @@ WARNING: untranslated string: exclude logfiles = Exclude logfiles
WARNING: untranslated string: expires = Expires
WARNING: untranslated string: export = Export
WARNING: untranslated string: external aliases configuration = External aliases configuration
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd because there is already a device mounted = , because there is already a device mounted
WARNING: untranslated string: extrahd cant umount = Can't umount
WARNING: untranslated string: extrahd detected drives = detected drives
@@ -1047,6 +1047,7 @@ WARNING: untranslated string: hosts config added = Hosts config added
WARNING: untranslated string: hosts config changed = Hosts config changed
WARNING: untranslated string: hour = Hour
WARNING: untranslated string: hours = Hours
WARNING: untranslated string: hours:minutes:seconds = H:M:S
WARNING: untranslated string: idle = Idle
WARNING: untranslated string: idle timeout = Idle timeout (mins; 0 to disable):
WARNING: untranslated string: idle timeout not set = Idle timeout not set.
@@ -1624,7 +1625,6 @@ WARNING: untranslated string: search = Search
WARNING: untranslated string: secondary dns = Secondary DNS:
WARNING: untranslated string: secondary ntp server = Secondary NTP server
WARNING: untranslated string: secondary wins server address = Secondary WINS server address
WARNING: untranslated string: seconds = Secs
WARNING: untranslated string: secret = Secret
WARNING: untranslated string: section = Section
WARNING: untranslated string: secure shell server = Secure Shell Server

View File

@@ -952,7 +952,7 @@ WARNING: untranslated string: downfall gather data sampling = Downfall/Gather Da
WARNING: untranslated string: enable disable client = unknown string
WARNING: untranslated string: enable disable dyndns = unknown string
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd mounted = Mounted
WARNING: untranslated string: extrahd no mount point given = No mount point given
WARNING: untranslated string: extrahd not configured = Not configured

View File

@@ -911,7 +911,7 @@ WARNING: untranslated string: downfall gather data sampling = Downfall/Gather Da
WARNING: untranslated string: enable disable client = unknown string
WARNING: untranslated string: enable disable dyndns = unknown string
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd mounted = Mounted
WARNING: untranslated string: extrahd no mount point given = No mount point given
WARNING: untranslated string: extrahd not configured = Not configured

View File

@@ -1004,7 +1004,7 @@ WARNING: untranslated string: eol architecture warning = You are running an arch
WARNING: untranslated string: error = Error
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: error the to date has to be later than the from date = The to date has to be later than the from date!
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd mounted = Mounted
WARNING: untranslated string: extrahd no mount point given = No mount point given
WARNING: untranslated string: extrahd not configured = Not configured

View File

@@ -1009,7 +1009,7 @@ WARNING: untranslated string: eol architecture warning = You are running an arch
WARNING: untranslated string: error = Error
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: error the to date has to be later than the from date = The to date has to be later than the from date!
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd mounted = Mounted
WARNING: untranslated string: extrahd no mount point given = No mount point given
WARNING: untranslated string: extrahd not configured = Not configured

View File

@@ -997,7 +997,7 @@ WARNING: untranslated string: eol architecture warning = You are running an arch
WARNING: untranslated string: error = Error
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: error the to date has to be later than the from date = The to date has to be later than the from date!
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd because there is already a device mounted = , because there is already a device mounted
WARNING: untranslated string: extrahd cant umount = Can't umount
WARNING: untranslated string: extrahd install or load driver = If your device isn't listed here, you need to install or load the driver.<br />If you can see your device but no partitions you have to create them first.

View File

@@ -994,7 +994,7 @@ WARNING: untranslated string: eol architecture warning = You are running an arch
WARNING: untranslated string: error = Error
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: error the to date has to be later than the from date = The to date has to be later than the from date!
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd because there is already a device mounted = , because there is already a device mounted
WARNING: untranslated string: extrahd cant umount = Can't umount
WARNING: untranslated string: extrahd install or load driver = If your device isn't listed here, you need to install or load the driver.<br />If you can see your device but no partitions you have to create them first.

View File

@@ -967,7 +967,7 @@ WARNING: untranslated string: eol architecture warning = You are running an arch
WARNING: untranslated string: error = Error
WARNING: untranslated string: error message = unknown string
WARNING: untranslated string: error the to date has to be later than the from date = The to date has to be later than the from date!
WARNING: untranslated string: extrahd because it is outside the allowed mount path = , because it is outside the allowed mount path
WARNING: untranslated string: extrahd because it is outside the allowed mount path = unknown string
WARNING: untranslated string: extrahd mounted = Mounted
WARNING: untranslated string: extrahd no mount point given = No mount point given
WARNING: untranslated string: extrahd not configured = Not configured

View File

@@ -55,6 +55,7 @@
< download apple profile
< enable
< error the to date has to be later than the from date
< extrahd because it it outside the allowed mount path
< g.dtm
< g.lite
< ids automatic rules update
@@ -107,7 +108,7 @@
< dhcp fixed ip address in dynamic range
< dns servers
< downfall gather data sampling
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd mounted
< extrahd no mount point given
< extrahd not configured
@@ -130,7 +131,7 @@
< bewan adsl pci st
< bewan adsl usb
< downfall gather data sampling
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd mounted
< extrahd no mount point given
< extrahd not configured
@@ -326,7 +327,7 @@
< eol architecture warning
< error
< error the to date has to be later than the from date
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd mounted
< extrahd no mount point given
< extrahd not configured
@@ -845,7 +846,7 @@
< eol architecture warning
< error
< error the to date has to be later than the from date
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd mounted
< extrahd no mount point given
< extrahd not configured
@@ -1472,7 +1473,7 @@
< eol architecture warning
< error
< error the to date has to be later than the from date
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd because there is already a device mounted
< extrahd cant umount
< extrahd install or load driver
@@ -2462,7 +2463,7 @@
< eol architecture warning
< error
< error the to date has to be later than the from date
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd because there is already a device mounted
< extrahd cant umount
< extrahd install or load driver
@@ -3267,7 +3268,7 @@
< eol architecture warning
< error
< error the to date has to be later than the from date
< extrahd because it is outside the allowed mount path
< extrahd because it it outside the allowed mount path
< extrahd mounted
< extrahd no mount point given
< extrahd not configured

View File

@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-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 #
@@ -352,7 +352,7 @@ if ($SORT_FIELD and $SORT_ORDER) {
$Lang::tr{'destination port'},
$Lang::tr{'protocol'},
$Lang::tr{'connection'}.' '.$Lang::tr{'status'},
$Lang::tr{'expires'}.' ('.$Lang::tr{'seconds'}.')',
$Lang::tr{'expires'}.' ('.$Lang::tr{'hours:minutes:seconds'}.')',
$Lang::tr{'download'},
$Lang::tr{'upload'}
);
@@ -435,7 +435,7 @@ print <<END;
$Lang::tr{'connection'}<br>$Lang::tr{'status'}
</th>
<th style='text-align:center'>
$Lang::tr{'expires'}<br>($Lang::tr{'seconds'})
$Lang::tr{'expires'}<br>($Lang::tr{'hours:minutes:seconds'})
</th>
</tr>
END

View File

@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
# Copyright (C) 2007-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 #

View File

@@ -790,7 +790,7 @@ sub BuildConfiguration() {
my @nodes = split(",", $settings{'TOR_USE_EXIT_NODES'});
foreach (@nodes) {
print FILE "ExitNode $_\n";
print FILE "ExitNodes $_\n";
}
}

View File

@@ -1372,6 +1372,7 @@
'hour-graph' => 'Stunde',
'hours' => 'Stunden',
'hours2' => 'Stunden',
'hours:minutes:seconds' => 'S:M:S',
'icmp selected but no type' => 'ICMP wurde zwar als Protokoll gewählt, es wurde aber kein ICMP-Typ angegeben.',
'icmp type' => 'ICMP-Typ',
'id' => 'ID',
@@ -2219,7 +2220,6 @@
'secondary dns' => 'Sekundärer DNS-Server:',
'secondary ntp server' => 'Sekundärer NTP-Server',
'secondary wins server address' => 'Sekundärer WINS-Server',
'seconds' => 'Sek.',
'secret' => 'Geheimnis',
'section' => 'Abschnitt',
'secure shell server' => 'Secure Shell Server',

View File

@@ -1073,7 +1073,7 @@
'external access rule removed' => ' External access rule removed; restarting access controller',
'external aliases configuration' => 'External aliases configuration',
'extrahd' => 'ExtraHD',
'extrahd because it is outside the allowed mount path' => ', because it is outside the allowed mount path',
'extrahd because it it outside the allowed mount path' => ', because it is outside the allowed mount path',
'extrahd because there is already a device mounted' => ', because there is already a device mounted',
'extrahd cant umount' => 'Can\'t umount',
'extrahd detected drives' => 'detected drives',
@@ -1420,6 +1420,7 @@
'hour-graph' => 'Hour',
'hours' => 'Hours',
'hours2' => 'Hours',
'hours:minutes:seconds' => 'H:M:S',
'icmp selected but no type' => 'ICMP selected for protocol, but no ICMP type specified.',
'icmp type' => 'ICMP Type',
'id' => 'ID',
@@ -2279,7 +2280,6 @@
'secondary dns' => 'Secondary DNS:',
'secondary ntp server' => 'Secondary NTP server',
'secondary wins server address' => 'Secondary WINS server address',
'seconds' => 'Secs',
'secret' => 'Secret',
'section' => 'Section',
'secure shell server' => 'Secure Shell Server',

View File

@@ -1419,6 +1419,7 @@
'hour-graph' => 'Hora',
'hours' => 'horas',
'hours2' => 'Horas',
'hours:minutes:seconds' => 'H:M:S',
'icmp selected but no type' => 'ICMP seleccionado como protocolo, pero no se ha seleccionado tipo de ICMP.',
'icmp type' => 'Tipo de ICMP',
'id' => 'ID',
@@ -2291,7 +2292,6 @@
'secondary dns' => 'DNS Secundario:',
'secondary ntp server' => 'Servidor NTP Secundario',
'secondary wins server address' => 'Dirección de servidor WINS Secundario',
'seconds' => 'Segs',
'secret' => 'Secreto',
'section' => 'Sección',
'secure shell server' => 'Servidor Secure Shell',

View File

@@ -1417,6 +1417,7 @@
'hour-graph' => 'Heure',
'hours' => 'heure(s)',
'hours2' => 'Heures',
'hours:minutes:seconds' => 'H:M:S',
'icmp selected but no type' => 'ICMP est le protocole sélectionné, mais il n\'y a aucun type ICMP spécifié.',
'icmp type' => 'Type ICMP',
'id' => 'ID',
@@ -2282,7 +2283,6 @@
'secondary dns' => 'DNS secondaire :',
'secondary ntp server' => 'Serveur NTP secondaire ',
'secondary wins server address' => 'Serveur WINS secondaire ',
'seconds' => 'Secondes',
'secret' => 'Secret',
'section' => 'Section ',
'secure shell server' => 'Serveur Shell Sécurisé',

View File

@@ -1204,6 +1204,7 @@
'hour-graph' => 'Ora',
'hours' => 'Ore',
'hours2' => 'Ore',
'hours:minutes:seconds' => 'O:M:S',
'icmp selected but no type' => 'ICMP selected for protocol, but no ICMP type specified.',
'icmp type' => 'ICMP Type',
'id' => 'ID',
@@ -1899,7 +1900,6 @@
'secondary dns' => 'DNS Secondario:',
'secondary ntp server' => 'NTP server secondario',
'secondary wins server address' => 'WINS server secondario',
'seconds' => 'Secondi',
'section' => 'Sezione',
'secure shell server' => 'Secure Shell Server',
'security' => 'Sicurezza',

View File

@@ -1201,6 +1201,7 @@
'hour-graph' => 'Uur',
'hours' => 'uren',
'hours2' => 'Uren',
'hours:minutes:seconds' => 'U:M:S',
'icmp selected but no type' => 'ICMP als protocol geselecteerd, maar er is geen ICMP type gespecificeerd.',
'icmp type' => 'ICMP Type',
'id' => 'ID',
@@ -1877,7 +1878,6 @@
'secondary dns' => 'Secondaire DNS:',
'secondary ntp server' => 'Secondaire NTP server',
'secondary wins server address' => 'Secondaire WINS serveradres',
'seconds' => 'Sec.',
'section' => 'Sectie',
'secure shell server' => 'Secure Shell Server',
'security' => 'Beveiliging',

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