Re-add changes after force sync
This commit is contained in:
12
README.md
12
README.md
@@ -1,9 +1,13 @@
|
||||
# RGMII Toolkit
|
||||
Software deployment Toolkit for Quectel RM5xxx series 5G modems utilizing an m.2 to RJ45 adapter (RGMII)
|
||||
|
||||
Current Branch: **SDXLEMUR**
|
||||
Current Branch: **overhaul-SDXLEMUR**
|
||||
Current Status: ⚠️ **DO NOT USE OR DEPLOY/BROKEN STATE** ⚠️
|
||||
|
||||
Please PR to [development-SDXLEMUR](https://github.com/iamromulan/quectel-rgmii-toolkit/tree/development-SDXLEMUR) instead of the main one :)
|
||||
- Currently reworking the opkg/entware system to be more flexable
|
||||
- Reworking packages from raw to ipk instead
|
||||
|
||||
Please PR to this branch instead of **SDXLEMUR** :)
|
||||
|
||||
Fork development, and PR development to development :)
|
||||
|
||||
@@ -49,7 +53,7 @@ Fork development, and PR development to development :)
|
||||
- If you don't get an error you should be getting replies back endlessly, press `CTRL-C` to stop it.
|
||||
- Simply Copy/Paste this into your Command Prompt/Shell
|
||||
```bash
|
||||
adb shell "cd /tmp && wget -O RMxxx_rgmii_toolkit.sh https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/SDXLEMUR/RMxxx_rgmii_toolkit.sh && chmod +x RMxxx_rgmii_toolkit.sh && ./RMxxx_rgmii_toolkit.sh" && cd /
|
||||
adb shell "cd /tmp && wget -O RMxxx_rgmii_toolkit.sh https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/development/RMxxx_rgmii_toolkit.sh && chmod +x RMxxx_rgmii_toolkit.sh && ./RMxxx_rgmii_toolkit.sh" && cd /
|
||||
```
|
||||
|
||||
**Or, if you want to stay in the modems shell when you are done**
|
||||
@@ -59,7 +63,7 @@ adb shell
|
||||
```
|
||||
Then run
|
||||
```
|
||||
cd /tmp && wget -O RMxxx_rgmii_toolkit.sh https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/SDXLEMUR/RMxxx_rgmii_toolkit.sh && chmod +x RMxxx_rgmii_toolkit.sh && ./RMxxx_rgmii_toolkit.sh && cd /
|
||||
cd /tmp && wget -O RMxxx_rgmii_toolkit.sh https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/development/RMxxx_rgmii_toolkit.sh && chmod +x RMxxx_rgmii_toolkit.sh && ./RMxxx_rgmii_toolkit.sh && cd /
|
||||
```
|
||||
**You should see:**
|
||||

|
||||
|
||||
105
installopkg.sh
Normal file
105
installopkg.sh
Normal file
@@ -0,0 +1,105 @@
|
||||
#!/bin/sh
|
||||
|
||||
#|---------|-------------------------|
|
||||
#| TARGET | SDXLEMUR |
|
||||
#| ARCH | arm_cortex-a7_neon-vfpv4|
|
||||
#|---------|-------------------------|
|
||||
|
||||
# Based on entware, heavily modified by iamromulan
|
||||
# This script sets up a custom opkg installation system for the SDXLEMUR platform
|
||||
# The primary feed for this will be my feed and will be a combo of modified IPK files from multiple sources
|
||||
# opkg is from entware and expects /opt to exist
|
||||
# /opt will be setup as an overlay of lower / and upper /usrdata/rootfs-upper
|
||||
# Most likely several mount binds will be setup at / to point back to /opt the overlay
|
||||
# The real /lib/systemd will need to be able to be written to so we may bind that within /opt
|
||||
# In active development; will decide if the entware feed gets re added later
|
||||
|
||||
|
||||
ARCH=arm_cortex-a7_neon-vfpv4
|
||||
#ARCH=armv7sf-k3.2
|
||||
PRE_OPKG_PATH=$(which opkg)
|
||||
URL=https://raw.githubusercontent.com/iamromulan/quectel-rgmii-toolkit/development-SDXLEMUR/opkg-feed/installer
|
||||
|
||||
# Remount filesystem as read-write
|
||||
mount -o remount,rw /
|
||||
|
||||
# Will need to edit this. Will be an overlay instead of bind mount
|
||||
# The package sdxlemur-mount-fix will make this run at boot
|
||||
create_opt_overlay() {
|
||||
|
||||
[ ! -d "/opt" ] && mkdir /opt
|
||||
[ ! -d "/usrdata/rootfs-upper" ] && mkdir /usrdata/rootfs-upper
|
||||
[ ! -d "/usrdata/rootfs-work" ] && mkdir /usrdata/rootfs-work
|
||||
|
||||
mount -t overlay overlay_root -o lowerdir=/,upperdir=/usrdata/rootfs-upper,workdir=/usrdata/rootfs-work /opt
|
||||
|
||||
# add additional mount binds and dir
|
||||
|
||||
}
|
||||
|
||||
# Account for existing opkg binary on the RM502Q-AE
|
||||
if [ -n "$PRE_OPKG_PATH" ]; then
|
||||
# Automatically rename the existing opkg binary
|
||||
mv "$PRE_OPKG_PATH" "${PRE_OPKG_PATH}_old"
|
||||
echo -e "\033[32mFactory/Already existing opkg has been renamed to opkg_old.\033[0m"
|
||||
else
|
||||
echo "Info: no existing opkg binary detected, proceeding with installation"
|
||||
fi
|
||||
|
||||
echo -e '\033[32mInfo: Creating /opt overlayfs with lower / and upper /usrdata/rootfs-upper \033[0m'
|
||||
create_opt_overlay
|
||||
|
||||
echo -e '\033[32mInfo: Proceeding with main installation ...\033[0m'
|
||||
echo -e '\033[32mInfo: Opkg package manager deployment...\033[0m'
|
||||
|
||||
wget $URL/opkg -O /opt/bin/opkg
|
||||
chmod 755 /opt/bin/opkg
|
||||
wget $URL/opkg.conf -O /opt/etc/opkg.conf
|
||||
|
||||
echo -e '\033[32mInfo: Basic packages installation...\033[0m'
|
||||
/opt/bin/opkg update
|
||||
#/opt/bin/opkg install entware-opt #Will revist this and its need
|
||||
/opt/bin/opkg install sdxlemur-factory-packages
|
||||
|
||||
# Fix for multiuser environment
|
||||
chmod 777 /opt/tmp
|
||||
|
||||
|
||||
echo -e '\033[32mInfo: Add /opt/bin & /opt/sbin to $PATH variable\033[0m'
|
||||
ln -sf /opt/bin/opkg /bin
|
||||
echo -e '\033[32mInfo: Patching Quectel Login Binary\033[0m'
|
||||
opkg update && opkg install shadow-login shadow-passwd shadow-useradd
|
||||
if [ "$?" -ne 0 ]; then
|
||||
echo -e "\e[1;31mPackage installation failed. Please check your internet connection and try again.\e[0m"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Replace the login and passwd binaries and set home for root to a writable directory
|
||||
rm /opt/etc/shadow
|
||||
rm /opt/etc/passwd
|
||||
cp /etc/shadow /opt/etc/
|
||||
cp /etc/passwd /opt/etc
|
||||
mkdir /usrdata/root
|
||||
mkdir /usrdata/root/bin
|
||||
touch /usrdata/root/.profile
|
||||
echo "# Set PATH for all shells" > /usrdata/root/.profile
|
||||
echo "export PATH=/bin:/usr/sbin:/usr/bin:/sbin:/opt/sbin:/opt/bin:/usrdata/root/bin" >> /usrdata/root/.profile
|
||||
chmod +x /usrdata/root/.profile
|
||||
sed -i '1s|/home/root:/bin/sh|/usrdata/root:/bin/bash|' /opt/etc/passwd
|
||||
rm /bin/login /usr/bin/passwd
|
||||
ln -sf /opt/bin/login /bin
|
||||
ln -sf /opt/bin/passwd /usr/bin/
|
||||
ln -sf /opt/bin/useradd /usr/bin/
|
||||
echo -e "\e[1;31mPlease set the root password.\e[0m"
|
||||
/usr/bin/passwd
|
||||
|
||||
# Install basic and useful utilites
|
||||
opkg install mc htop dfc lsof
|
||||
ln -sf /opt/bin/mc /bin
|
||||
ln -sf /opt/bin/htop /bin
|
||||
ln -sf /opt/bin/dfc /bin
|
||||
ln -sf /opt/bin/lsof /bin
|
||||
# Remount filesystem as read-only
|
||||
mount -o remount,ro /
|
||||
echo -e '\033[32mInfo: Congratulations!\033[0m'
|
||||
echo -e '\033[32mInfo: If there are no errors above then Entware was successfully initialized.\033[0m'
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: atinout
|
||||
Version: 0.9.1
|
||||
Depends: libc
|
||||
Source: feeds/kiddin9/atinout
|
||||
SourceName: atinout
|
||||
License: GPLv2
|
||||
LicenseFiles: LICENSE
|
||||
Section: net
|
||||
SourceDateEpoch: 1731357966
|
||||
URL: http://atinout.sourceforge.net/
|
||||
Maintainer: Adrian Guenter <a@gntr.me>
|
||||
Architecture: arm_cortex-a7_neon-vfpv4
|
||||
Installed-Size: 20480
|
||||
Description: Atinout is a program that will execute AT commands in sequence and
|
||||
capture the response from the modem.
|
||||
5
ipk-source/atinout_0.9.1_arm_cortex-a7_neon-vfpv4/CONTROL/postinst
Executable file
5
ipk-source/atinout_0.9.1_arm_cortex-a7_neon-vfpv4/CONTROL/postinst
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
[ "${IPKG_NO_SCRIPT}" = "1" ] && exit 0
|
||||
[ -s ${IPKG_INSTROOT}/lib/functions.sh ] || exit 0
|
||||
. ${IPKG_INSTROOT}/lib/functions.sh
|
||||
default_postinst $0 $@
|
||||
4
ipk-source/atinout_0.9.1_arm_cortex-a7_neon-vfpv4/CONTROL/prerm
Executable file
4
ipk-source/atinout_0.9.1_arm_cortex-a7_neon-vfpv4/CONTROL/prerm
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
[ -s ${IPKG_INSTROOT}/lib/functions.sh ] || exit 0
|
||||
. ${IPKG_INSTROOT}/lib/functions.sh
|
||||
default_prerm $0 $@
|
||||
@@ -0,0 +1 @@
|
||||
2.0
|
||||
@@ -0,0 +1,2 @@
|
||||
/etc/config/
|
||||
/etc/atinout/
|
||||
BIN
ipk-source/atinout_0.9.1_arm_cortex-a7_neon-vfpv4/root/usr/bin/atinout
Executable file
BIN
ipk-source/atinout_0.9.1_arm_cortex-a7_neon-vfpv4/root/usr/bin/atinout
Executable file
Binary file not shown.
8
ipk-source/sdxlemur-factory-packages/CONTROL/control
Normal file
8
ipk-source/sdxlemur-factory-packages/CONTROL/control
Normal file
@@ -0,0 +1,8 @@
|
||||
Package: sdxlemur-factory-packages
|
||||
Version: 0.0.1
|
||||
Source: github/iamromulan/tookit/sdxlemur-factory-packages
|
||||
Section: base
|
||||
URL: https://github.com/iamromulan
|
||||
Maintainer: Cameron Thompson <github.com/iamromulan>
|
||||
Architecture: sdxlemur
|
||||
Description: An index of packages already included in the flashed firmware
|
||||
4
ipk-source/sdxlemur-factory-packages/README.md
Normal file
4
ipk-source/sdxlemur-factory-packages/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Do not build yet
|
||||
|
||||
- This is still a work in progress
|
||||
- This is a copy of a system that is laid out for stock entware
|
||||
1
ipk-source/sdxlemur-factory-packages/debian-binary
Normal file
1
ipk-source/sdxlemur-factory-packages/debian-binary
Normal file
@@ -0,0 +1 @@
|
||||
2.0
|
||||
46
ipk-source/sdxlemur-factory-packages/fndfiles
Normal file
46
ipk-source/sdxlemur-factory-packages/fndfiles
Normal file
@@ -0,0 +1,46 @@
|
||||
#!/bin/bash
|
||||
|
||||
# List of base file names to check
|
||||
files=(
|
||||
"libgmodule-2.0.so.0"
|
||||
"libgmodule-2.0.so.0.8000.3"
|
||||
"libglib-2.0.so.0"
|
||||
"libgirepository-2.0.so.0.8000.3"
|
||||
"libgthread-2.0.so.0.8000.3"
|
||||
"libgthread-2.0.so.0"
|
||||
"libgio-2.0.so"
|
||||
"libgobject-2.0.so"
|
||||
"libgirepository-2.0.so.0"
|
||||
"libgobject-2.0.so.0.8000.3"
|
||||
"libgmodule-2.0.so"
|
||||
"libglib-2.0.so"
|
||||
"libgio-2.0.so.0.8000.3"
|
||||
"libgio-2.0.so.0"
|
||||
"libgobject-2.0.so.0"
|
||||
"libgthread-2.0.so"
|
||||
"libglib-2.0.so.0.8000.3"
|
||||
"libgirepository-2.0.so"
|
||||
)
|
||||
|
||||
# Directories to check
|
||||
check_dirs=("/lib" "/usr/lib")
|
||||
|
||||
echo "Checking for files in /lib and /usr/lib..."
|
||||
|
||||
# Loop through each file and check existence
|
||||
for file in "${files[@]}"; do
|
||||
found=false
|
||||
|
||||
for dir in "${check_dirs[@]}"; do
|
||||
if [ -e "$dir/$file" ]; then
|
||||
echo "FOUND: $dir/$file"
|
||||
found=true
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$found" = false ]; then
|
||||
echo "MISSING: $file"
|
||||
fi
|
||||
done
|
||||
|
||||
@@ -0,0 +1,467 @@
|
||||
Package: terminfo
|
||||
Version: 6.4-3
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807818
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libc
|
||||
Version: 2.27-11
|
||||
Depends: libgcc
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807811
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: lighttpd-mod-openssl
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd, libopenssl
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/lighttpd/conf.d/30-openssl.conf cbedc1d748ded4196ec76bc35c9ff14b9977905548777cf0fe03e429860a8039
|
||||
Installed-Time: 1724807947
|
||||
|
||||
Package: locales
|
||||
Version: 2.27-9
|
||||
Depends: libc, libssp, librt, libpthread, grep
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807821
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: entware-upgrade
|
||||
Version: 1.0-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: all
|
||||
Installed-Time: 1724807823
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: opkg
|
||||
Version: 2022.02.24~d038e5b6-2
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807822
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libpthread
|
||||
Version: 2.27-11
|
||||
Depends: libgcc
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807812
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: zoneinfo-europe
|
||||
Version: 2024a-1
|
||||
Depends: libc, libssp, librt, libpthread, zoneinfo-core
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807816
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: lighttpd-mod-cgi
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/lighttpd/conf.d/30-cgi.conf 7ce3426b6732ded36a4405e7295c805f9b5b6657d151b6e6e4b06088d76e0872
|
||||
Installed-Time: 1724807943
|
||||
|
||||
Package: libatomic
|
||||
Version: 8.4.0-11
|
||||
Depends: libgcc
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807945
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: lsof
|
||||
Version: 4.99.0-1
|
||||
Depends: libc, libssp, librt, libpthread, libtirpc
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807876
|
||||
|
||||
Package: glib2
|
||||
Version: 2.80.3-1
|
||||
Depends: libc, libssp, librt, libpthread, libiconv-full, libintl-full, zlib, libpthread, libffi, libattr, libpcre2
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807864
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libssh2
|
||||
Version: 1.11.0-1
|
||||
Depends: libc, libssp, librt, libpthread, libmbedtls, zlib
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807871
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: lighttpd-mod-authn_file
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd, lighttpd-mod-auth, libnettle
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/lighttpd/conf.d/20-authn_file.conf 8367afa989f6b08d1483b6119b70f0d5d6332a41dc8862b20ddbf360864011b9
|
||||
Installed-Time: 1724807943
|
||||
|
||||
Package: mc
|
||||
Version: 4.8.31-1
|
||||
Depends: libc, libssp, librt, libpthread, glib2, libslang2, libmount, libe2p, libssh2, libiconv-full
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/mc/mc.menu c27296bdf60aa3734fa5d7355a1d7b2c59ca49bdd15d7b16d946bd3b09206dcf
|
||||
Installed-Time: 1724807871
|
||||
|
||||
Package: grep
|
||||
Version: 3.11-1
|
||||
Depends: libc, libssp, librt, libpthread, libpcre2
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807820
|
||||
Auto-Installed: yes
|
||||
Alternatives: 300:/opt/bin/egrep:/opt/libexec/egrep-gnu, 300:/opt/bin/fgrep:/opt/libexec/fgrep-gnu, 300:/opt/bin/grep:/opt/libexec/grep-gnu
|
||||
|
||||
Package: zoneinfo-asia
|
||||
Version: 2024a-1
|
||||
Depends: libc, libssp, librt, libpthread, zoneinfo-core
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807815
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: lighttpd-mod-proxy
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/lighttpd/conf.d/30-proxy.conf 22ce54a7a4cf8b8e52ce06a5b485a0e444e67865ad044f68e8262d9708e6cfd2
|
||||
Installed-Time: 1724807948
|
||||
|
||||
Package: libnettle
|
||||
Version: 3.9.1-1
|
||||
Depends: libc, libssp, librt, libpthread, libgmp
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807942
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libblkid
|
||||
Version: 2.40.1-1
|
||||
Depends: libc, libssp, librt, libpthread, libuuid
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807867
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libmbedtls
|
||||
Version: 3.6.0-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807870
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libiconv-full
|
||||
Version: 1.17-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807843
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libaprutil
|
||||
Version: 1.6.3-1
|
||||
Depends: libc, libssp, librt, libpthread, libapr, libexpat, libuuid, libiconv-full
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807915
|
||||
|
||||
Package: shadow-useradd
|
||||
Version: 4.8.1-3b
|
||||
Depends: libc, libssp, librt, libpthread, shadow-common
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807846
|
||||
|
||||
Package: lighttpd
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, libpthread, libpcre2, libnettle
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/lighttpd/lighttpd.conf a445465f0e6193ca32af65c9b9939ae05323bf6d2e1a23e6b73c451ec5962308
|
||||
Installed-Time: 1724807942
|
||||
|
||||
Package: shadow-passwd
|
||||
Version: 4.8.1-3b
|
||||
Depends: libc, libssp, librt, libpthread, shadow-common
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807845
|
||||
Alternatives: 300:/opt/bin/passwd:/opt/libexec/passwd-shadow
|
||||
|
||||
Package: dfc
|
||||
Version: 3.1.1-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807874
|
||||
|
||||
Package: libpcre2
|
||||
Version: 10.42-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807819
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: zoneinfo-core
|
||||
Version: 2024a-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807815
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libstdcpp
|
||||
Version: 8.4.0-11
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807814
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libgcc
|
||||
Version: 8.4.0-11
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807809
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: sudo
|
||||
Version: 1.8.31-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/sudoers 398a242fe6c35e0f23b0be794f777b1a75ada7c525e65561020f37d7190f1081
|
||||
Installed-Time: 1724807939
|
||||
|
||||
Package: libslang2
|
||||
Version: 2.3.3-2
|
||||
Depends: libc, libssp, librt, libpthread, terminfo
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807866
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libffi
|
||||
Version: 3.4.6-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807862
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libuuid
|
||||
Version: 2.40.1-1
|
||||
Depends: libc, libssp, librt, libpthread, librt
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807866
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libapr
|
||||
Version: 1.7.4-1
|
||||
Depends: libc, libssp, librt, libpthread, libpthread, librt, libuuid
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807914
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: librt
|
||||
Version: 2.27-11
|
||||
Depends: libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807812
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: entware-release
|
||||
Version: 2024.07-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: all
|
||||
Installed-Time: 1724807814
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libintl-full
|
||||
Version: 0.22.5-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807844
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libncurses
|
||||
Version: 6.4-3
|
||||
Depends: libc, libssp, librt, libpthread, libncursesw
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807874
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libmount
|
||||
Version: 2.40.1-1
|
||||
Depends: libc, libssp, librt, libpthread, libblkid
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807868
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: zlib
|
||||
Version: 1.3.1-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807861
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libncursesw
|
||||
Version: 6.4-3
|
||||
Depends: libc, libssp, librt, libpthread, terminfo
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807873
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: findutils
|
||||
Version: 4.10.0-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807817
|
||||
Auto-Installed: yes
|
||||
Alternatives: 300:/opt/bin/find:/opt/libexec/find-gnu, 300:/opt/bin/xargs:/opt/libexec/xargs-gnu
|
||||
|
||||
Package: htop
|
||||
Version: 3.3.0-2
|
||||
Depends: libc, libssp, librt, libpthread, libncurses
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807874
|
||||
|
||||
Package: lighttpd-mod-auth
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd, libnettle
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/lighttpd/conf.d/20-auth.conf 6502aba9ef04d9305bedc9a313ca8d890634434482694ae814a210665f6c99bd
|
||||
Installed-Time: 1724807943
|
||||
|
||||
Package: libssp
|
||||
Version: 8.4.0-11
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807811
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libe2p
|
||||
Version: 1.47.0-2
|
||||
Depends: libc, libssp, librt, libpthread, libuuid
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807869
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libgmp
|
||||
Version: 6.3.0-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807941
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libexpat
|
||||
Version: 2.6.2-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807915
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: shadow-login
|
||||
Version: 4.8.1-3b
|
||||
Depends: libc, libssp, librt, libpthread, shadow-common
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807844
|
||||
Alternatives: 300:/opt/bin/login:/opt/libexec/login-shadow
|
||||
|
||||
Package: entware-opt
|
||||
Version: 227000-3
|
||||
Depends: libc, libssp, librt, libpthread, libgcc, libstdcpp, libpthread, librt, entware-release, zoneinfo-asia, zoneinfo-europe, findutils, terminfo, locales, opkg, entware-upgrade
|
||||
Conflicts: opt-ndmsv2
|
||||
Status: install user installed
|
||||
Architecture: all
|
||||
Conffiles:
|
||||
/opt/etc/group.1 d0e5f0d86ff4c7027efd7bf0196c95a73e6b4407d6870ed36f969ff75d633d88
|
||||
/opt/etc/passwd.1 e26f51b6cf450fed85cf6179e323e894ea413ccf913c8c9d3a230fd520e4ab19
|
||||
/opt/etc/profile f3273b58a3f62d1a4216c2fab30c36f17b16fc97324119a62cf2ba68f3c75ffb
|
||||
/opt/etc/shells.1 126b0362dce578a66ffe803a04e15dec74a854dd0786dcb004b5789fdde8781d
|
||||
Installed-Time: 1724807823
|
||||
|
||||
Package: libtirpc
|
||||
Version: 1.3.4-1
|
||||
Depends: libc, libssp, librt, libpthread, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807876
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: libattr
|
||||
Version: 2.5.2-3
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807862
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: vsftpd
|
||||
Version: 3.0.5-2
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Conflicts: vsftpd-ext
|
||||
Status: install user installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/vsftpd/vsftpd.conf 0cb17bd90a54f2a71a95f48f15e692ce30a4a470fc696df175b9efcc0d5cfddf
|
||||
/opt/etc/vsftpd/vsftpd.conf 0cb17bd90a54f2a71a95f48f15e692ce30a4a470fc696df175b9efcc0d5cfddf
|
||||
Installed-Time: 1733767303
|
||||
|
||||
Package: libopenssl
|
||||
Version: 3.0.14-2
|
||||
Depends: libc, libssp, librt, libpthread, zlib, libatomic
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Installed-Time: 1724807947
|
||||
Auto-Installed: yes
|
||||
|
||||
Package: shadow-common
|
||||
Version: 4.8.1-3b
|
||||
Depends: libc, libssp, librt, libpthread, libiconv-full, libintl-full
|
||||
Status: install ok installed
|
||||
Architecture: armv7-3.2
|
||||
Conffiles:
|
||||
/opt/etc/login.defs 283379b26b2628c6dc37dbf876ccf9f29f0cd1a966f98a705041d417a6fb40c8
|
||||
Installed-Time: 1724807844
|
||||
Auto-Installed: yes
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/lighttpd/conf.d/20-auth.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: lighttpd-mod-auth
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd, libnettle
|
||||
Source: feeds/packages/net/lighttpd
|
||||
SourceName: lighttpd
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: net
|
||||
SourceDateEpoch: 1720617668
|
||||
URL: https://www.lighttpd.net/
|
||||
CPE-ID: cpe:/a:lighttpd:lighttpd
|
||||
Maintainer: Glenn Strauss <gstrauss@gluelogic.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 40960
|
||||
Description: Authentication module
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/lighttpd/mod_auth.so
|
||||
/opt/etc/lighttpd/conf.d/20-auth.conf
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/lighttpd/conf.d/20-authn_file.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: lighttpd-mod-authn_file
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd, lighttpd-mod-auth, libnettle
|
||||
Source: feeds/packages/net/lighttpd
|
||||
SourceName: lighttpd
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: net
|
||||
SourceDateEpoch: 1720617668
|
||||
URL: https://www.lighttpd.net/
|
||||
CPE-ID: cpe:/a:lighttpd:lighttpd
|
||||
Maintainer: Glenn Strauss <gstrauss@gluelogic.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 20480
|
||||
Description: File-based authentication module
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/etc/lighttpd/conf.d/20-authn_file.conf
|
||||
/opt/lib/lighttpd/mod_authn_file.so
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/lighttpd/conf.d/30-cgi.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: lighttpd-mod-cgi
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd
|
||||
Source: feeds/packages/net/lighttpd
|
||||
SourceName: lighttpd
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: net
|
||||
SourceDateEpoch: 1720617668
|
||||
URL: https://www.lighttpd.net/
|
||||
CPE-ID: cpe:/a:lighttpd:lighttpd
|
||||
Maintainer: Glenn Strauss <gstrauss@gluelogic.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 30720
|
||||
Description: CGI module
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/etc/lighttpd/conf.d/30-cgi.conf
|
||||
/opt/lib/lighttpd/mod_cgi.so
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/lighttpd/conf.d/30-openssl.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: lighttpd-mod-openssl
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd, libopenssl
|
||||
Source: feeds/packages/net/lighttpd
|
||||
SourceName: lighttpd
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: net
|
||||
SourceDateEpoch: 1720617668
|
||||
URL: https://www.lighttpd.net/
|
||||
CPE-ID: cpe:/a:lighttpd:lighttpd
|
||||
Maintainer: Glenn Strauss <gstrauss@gluelogic.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 51200
|
||||
Description: TLS using openssl module
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/lighttpd/mod_openssl.so
|
||||
/opt/etc/lighttpd/conf.d/30-openssl.conf
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/lighttpd/conf.d/30-proxy.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: lighttpd-mod-proxy
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, lighttpd
|
||||
Source: feeds/packages/net/lighttpd
|
||||
SourceName: lighttpd
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: net
|
||||
SourceDateEpoch: 1720617668
|
||||
URL: https://www.lighttpd.net/
|
||||
CPE-ID: cpe:/a:lighttpd:lighttpd
|
||||
Maintainer: Glenn Strauss <gstrauss@gluelogic.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 30720
|
||||
Description: Proxy module
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/etc/lighttpd/conf.d/30-proxy.conf
|
||||
/opt/lib/lighttpd/mod_proxy.so
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/lighttpd/lighttpd.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: lighttpd
|
||||
Version: 1.4.76-2
|
||||
Depends: libc, libssp, librt, libpthread, libpthread, libpcre2, libnettle
|
||||
Source: feeds/packages/net/lighttpd
|
||||
SourceName: lighttpd
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: net
|
||||
SourceDateEpoch: 1720617668
|
||||
URL: https://www.lighttpd.net/
|
||||
CPE-ID: cpe:/a:lighttpd:lighttpd
|
||||
Maintainer: Glenn Strauss <gstrauss@gluelogic.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 450560
|
||||
Description: A flexible and lightweight web server
|
||||
@@ -0,0 +1,6 @@
|
||||
/opt/lib/lighttpd/mod_h2.so
|
||||
/opt/etc/init.d/S80lighttpd
|
||||
/opt/lib/lighttpd/mod_dirlisting.so
|
||||
/opt/etc/lighttpd/mime.conf
|
||||
/opt/etc/lighttpd/lighttpd.conf
|
||||
/opt/sbin/lighttpd
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: lsof
|
||||
Version: 4.99.0-1
|
||||
Depends: libc, libssp, librt, libpthread, libtirpc
|
||||
Source: feeds/packages/utils/lsof
|
||||
SourceName: lsof
|
||||
License: lsof
|
||||
LicenseFiles: COPYING
|
||||
Section: utils
|
||||
SourceDateEpoch: 1716287455
|
||||
URL: http://people.freebsd.org/~abe/
|
||||
Maintainer: Maxim Storchak <m.storchak@gmail.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 163840
|
||||
Description: LiSt Open Files - a diagnostic tool
|
||||
@@ -0,0 +1 @@
|
||||
/opt/bin/lsof
|
||||
@@ -0,0 +1 @@
|
||||
/opt/etc/mc/mc.menu
|
||||
@@ -0,0 +1,17 @@
|
||||
Package: mc
|
||||
Version: 4.8.31-1
|
||||
Depends: libc, libssp, librt, libpthread, glib2, libslang2, libmount, libe2p, libssh2, libiconv-full
|
||||
Source: feeds/packages/utils/mc
|
||||
SourceName: mc
|
||||
License: GPL-3.0-or-later
|
||||
Section: utils
|
||||
SourceDateEpoch: 1720623630
|
||||
URL: https://www.midnight-commander.org/
|
||||
CPE-ID: cpe:/a:midnight_commander:midnight_commander
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 3901440
|
||||
Description: GNU Midnight Commander is a visual file manager.
|
||||
It's a feature rich full-screen text mode application that allows you to copy,
|
||||
move and delete files and whole directory trees, search for files and run commands in the subshell.
|
||||
Internal viewer and editor are included as well.
|
||||
|
||||
@@ -0,0 +1,263 @@
|
||||
/opt/lib/mc/extfs.d/uace
|
||||
/opt/share/mc/syntax/j.syntax
|
||||
/opt/share/mc/syntax/swift.syntax
|
||||
/opt/lib/mc/extfs.d/dpkg+
|
||||
/opt/share/mc/skins/double-lines.ini
|
||||
/opt/lib/mc/extfs.d/urar
|
||||
/opt/lib/mc/shell/rmdir
|
||||
/opt/share/mc/examples/macros.d/macro.1.sh
|
||||
/opt/share/mc/hints/mc.hint.hu
|
||||
/opt/share/mc/skins/seasons-spring16M.ini
|
||||
/opt/share/mc/syntax/rust.syntax
|
||||
/opt/share/mc/syntax/protobuf.syntax
|
||||
/opt/lib/mc/mc.sh
|
||||
/opt/share/mc/hints/mc.hint.id
|
||||
/opt/share/mc/skins/nicedark.ini
|
||||
/opt/lib/mc/extfs.d/ucab
|
||||
/opt/share/mc/syntax/cmake.syntax
|
||||
/opt/share/mc/syntax/meson.syntax
|
||||
/opt/share/mc/skins/modarin256root.ini
|
||||
/opt/share/mc/hints/mc.hint.it
|
||||
/opt/share/mc/syntax/changelog.syntax
|
||||
/opt/share/mc/syntax/sql.syntax
|
||||
/opt/share/mc/hints/mc.hint.ja
|
||||
/opt/share/mc/hints/mc.hint.zh_CN
|
||||
/opt/share/mc/skins/featured-plus.ini
|
||||
/opt/share/mc/syntax/dot.syntax
|
||||
/opt/share/mc/syntax/vhdl.syntax
|
||||
/opt/lib/mc/ext.d/web.sh
|
||||
/opt/share/mc/skins/mc46.ini
|
||||
/opt/lib/mc/mc.csh
|
||||
/opt/share/mc/hints/mc.hint.ka
|
||||
/opt/lib/mc/ext.d/sound.sh
|
||||
/opt/share/mc/syntax/strace.syntax
|
||||
/opt/share/mc/hints/mc.hint.ko
|
||||
/opt/share/mc/hints/mc.hint.en_GB
|
||||
/opt/bin/mc
|
||||
/opt/share/mc/skins/seasons-winter16M.ini
|
||||
/opt/lib/mc/extfs.d/uha
|
||||
/opt/share/mc/syntax/octave.syntax
|
||||
/opt/lib/mc/mc-wrapper.csh
|
||||
/opt/share/mc/hints/mc.hint.lt
|
||||
/opt/share/mc/syntax/yxx.syntax
|
||||
/opt/share/mc/syntax/f90.syntax
|
||||
/opt/share/mc/syntax/debian-description.syntax
|
||||
/opt/etc/mc/mcedit.menu
|
||||
/opt/share/mc/skins/dark.ini
|
||||
/opt/share/mc/skins/julia256.ini
|
||||
/opt/share/mc/syntax/properties.syntax
|
||||
/opt/share/mc/syntax/Syntax
|
||||
/opt/lib/mc/shell/mkdir
|
||||
/opt/share/mc/hints/mc.hint.nb
|
||||
/opt/share/mc/syntax/ml.syntax
|
||||
/opt/share/mc/syntax/povray.syntax
|
||||
/opt/share/mc/hints/mc.hint.nl
|
||||
/opt/share/mc/examples/macros.d/macro.3.sh
|
||||
/opt/lib/mc/extfs.d/bpp
|
||||
/opt/lib/mc/extfs.d/rpm
|
||||
/opt/share/mc/syntax/cs.syntax
|
||||
/opt/share/mc/syntax/filehighlight.syntax
|
||||
/opt/etc/mc/mc.emacs.keymap
|
||||
/opt/share/mc/skins/default.ini
|
||||
/opt/share/mc/syntax/b.syntax
|
||||
/opt/share/mc/skins/featured.ini
|
||||
/opt/lib/mc/extfs.d/a+
|
||||
/opt/lib/mc/extfs.d/s3+
|
||||
/opt/share/mc/syntax/aspx.syntax
|
||||
/opt/lib/mc/shell/get
|
||||
/opt/share/mc/syntax/awk.syntax
|
||||
/opt/share/mc/hints/mc.hint.pl
|
||||
/opt/share/mc/skins/yadt256.ini
|
||||
/opt/lib/mc/extfs.d/README.extfs
|
||||
/opt/share/mc/hints/mc.hint.pt
|
||||
/opt/lib/mc/extfs.d/rpms+
|
||||
/opt/share/mc/skins/seasons-autumn16M.ini
|
||||
/opt/bin/mcedit
|
||||
/opt/share/mc/syntax/glsl.syntax
|
||||
/opt/lib/mc/ext.d/archive.sh
|
||||
/opt/lib/mc/extfs.d/ualz
|
||||
/opt/share/mc/syntax/python.syntax
|
||||
/opt/share/mc/syntax/markdown.syntax
|
||||
/opt/share/mc/examples/macros.d/macro.4.sh
|
||||
/opt/lib/upgrade/keep.d/mc
|
||||
/opt/share/mc/skins/yadt256-defbg.ini
|
||||
/opt/share/mc/syntax/yaml.syntax
|
||||
/opt/share/mc/syntax/nroff.syntax
|
||||
/opt/share/mc/hints/mc.hint.ro
|
||||
/opt/share/mc/skins/modarin256root-defbg.ini
|
||||
/opt/share/mc/skins/gray-green-purple256.ini
|
||||
/opt/share/mc/hints/mc.hint.ru
|
||||
/opt/lib/mc/shell/unlink
|
||||
/opt/share/mc/syntax/pascal.syntax
|
||||
/opt/share/mc/syntax/html.syntax
|
||||
/opt/share/mc/syntax/go.syntax
|
||||
/opt/share/mc/syntax/verilog.syntax
|
||||
/opt/share/mc/syntax/opencl.syntax
|
||||
/opt/share/mc/hints/mc.hint.sk
|
||||
/opt/lib/mc/shell/send
|
||||
/opt/lib/mc/extfs.d/patchfs
|
||||
/opt/share/mc/hints/mc.hint.sr
|
||||
/opt/share/mc/hints/mc.hint.sv
|
||||
/opt/etc/mc/sfs.ini
|
||||
/opt/share/mc/skins/sand256.ini
|
||||
/opt/share/mc/syntax/cuda.syntax
|
||||
/opt/lib/mc/extfs.d/mailfs
|
||||
/opt/share/mc/skins/modarin256.ini
|
||||
/opt/bin/mcdiff
|
||||
/opt/lib/mc/extfs.d/trpm
|
||||
/opt/share/mc/examples/macros.d/macro.5.sh
|
||||
/opt/share/mc/mc.lib
|
||||
/opt/lib/mc/shell/chmod
|
||||
/opt/share/mc/hints/mc.hint.tr
|
||||
/opt/share/mc/syntax/dlink.syntax
|
||||
/opt/share/mc/help/mc.hlp.es
|
||||
/opt/share/mc/syntax/cython.syntax
|
||||
/opt/etc/mc/mc.ext.ini
|
||||
/opt/share/mc/syntax/latex.syntax
|
||||
/opt/lib/mc/extfs.d/uc1541
|
||||
/opt/share/mc/hints/mc.hint.uk
|
||||
/opt/share/mc/syntax/osl.syntax
|
||||
/opt/lib/mc/extfs.d/README
|
||||
/opt/share/mc/syntax/ada95.syntax
|
||||
/opt/share/mc/syntax/slang.syntax
|
||||
/opt/share/mc/syntax/debian-sources-list.syntax
|
||||
/opt/share/mc/syntax/java.syntax
|
||||
/opt/etc/mc/mc.keymap
|
||||
/opt/share/mc/syntax/c.syntax
|
||||
/opt/share/mc/syntax/smalltalk.syntax
|
||||
/opt/lib/mc/ext.d/doc.sh
|
||||
/opt/lib/mc/extfs.d/gitfs+
|
||||
/opt/lib/mc/extfs.d/uarc
|
||||
/opt/share/mc/mc.charsets
|
||||
/opt/share/mc/skins/seasons-summer16M.ini
|
||||
/opt/share/mc/syntax/xml.syntax
|
||||
/opt/lib/mc/extfs.d/uarj
|
||||
/opt/share/mc/syntax/erlang.syntax
|
||||
/opt/share/mc/syntax/yum-repo.syntax
|
||||
/opt/lib/mc/extfs.d/iso9660
|
||||
/opt/lib/mc/shell/utime
|
||||
/opt/share/mc/syntax/haskell.syntax
|
||||
/opt/share/mc/syntax/ts.syntax
|
||||
/opt/share/mc/examples/macros.d/macro.6.sh
|
||||
/opt/share/mc/syntax/cobol.syntax
|
||||
/opt/lib/mc/extfs.d/hp48+
|
||||
/opt/share/mc/skins/darkfar.ini
|
||||
/opt/etc/mc/mc.default.keymap
|
||||
/opt/share/mc/syntax/jal.syntax
|
||||
/opt/share/mc/help/mc.hlp.hu
|
||||
/opt/share/mc/help/mc.hlp
|
||||
/opt/lib/mc/extfs.d/apt+
|
||||
/opt/share/mc/help/mc.hlp.it
|
||||
/opt/share/mc/syntax/swig.syntax
|
||||
/opt/lib/mc/extfs.d/lslR
|
||||
/opt/share/mc/syntax/mail.syntax
|
||||
/opt/etc/mc/edit.indent.rc
|
||||
/opt/share/mc/syntax/procmail.syntax
|
||||
/opt/lib/mc/shell/append
|
||||
/opt/etc/mc/filehighlight.ini
|
||||
/opt/lib/mc/extfs.d/uwim
|
||||
/opt/share/mc/examples/macros.d/macro.7.sh
|
||||
/opt/share/mc/syntax/css.syntax
|
||||
/opt/lib/mc/extfs.d/u7z
|
||||
/opt/lib/mc/extfs.d/deba
|
||||
/opt/share/mc/syntax/kotlin.syntax
|
||||
/opt/lib/mc/extfs.d/debd
|
||||
/opt/share/mc/syntax/cabal.syntax
|
||||
/opt/lib/mc/ext.d/image.sh
|
||||
/opt/share/mc/syntax/po.syntax
|
||||
/opt/share/mc/syntax/syntax.syntax
|
||||
/opt/share/mc/syntax/nemerle.syntax
|
||||
/opt/share/mc/hints/mc.hint.zh_TW
|
||||
/opt/lib/mc/ext.d/text.sh
|
||||
/opt/share/mc/syntax/json.syntax
|
||||
/opt/share/mc/syntax/yabasic.syntax
|
||||
/opt/lib/mc/mc-wrapper.sh
|
||||
/opt/share/mc/skins/gotar.ini
|
||||
/opt/share/mc/syntax/debian-changelog.syntax
|
||||
/opt/share/mc/skins/modarcon16root-defbg.ini
|
||||
/opt/share/mc/syntax/texinfo.syntax
|
||||
/opt/lib/mc/ext.d/package.sh
|
||||
/opt/share/mc/syntax/lua.syntax
|
||||
/opt/share/mc/syntax/d.syntax
|
||||
/opt/share/mc/skins/gray-orange-blue256.ini
|
||||
/opt/share/mc/syntax/spec.syntax
|
||||
/opt/share/mc/syntax/toml.syntax
|
||||
/opt/lib/mc/ext.d/misc.sh
|
||||
/opt/share/mc/syntax/tt.syntax
|
||||
/opt/lib/mc/shell/README.shell
|
||||
/opt/share/mc/syntax/as.syntax
|
||||
/opt/share/mc/syntax/puppet.syntax
|
||||
/opt/share/mc/syntax/named.syntax
|
||||
/opt/share/mc/syntax/eiffel.syntax
|
||||
/opt/lib/mc/shell/info
|
||||
/opt/share/mc/syntax/r.syntax
|
||||
/opt/share/mc/syntax/spice.syntax
|
||||
/opt/share/mc/help/mc.hlp.pl
|
||||
/opt/lib/mc/extfs.d/unar
|
||||
/opt/share/mc/syntax/fortran.syntax
|
||||
/opt/lib/mc/extfs.d/uzip
|
||||
/opt/lib/mc/extfs.d/changesetfs
|
||||
/opt/share/mc/skins/modarcon16.ini
|
||||
/opt/lib/mc/extfs.d/audio
|
||||
/opt/share/mc/syntax/makefile.syntax
|
||||
/opt/lib/mc/shell/chown
|
||||
/opt/share/mc/syntax/lsm.syntax
|
||||
/opt/share/mc/hints/mc.hint.be
|
||||
/opt/etc/mc/mc.menu
|
||||
/opt/share/mc/hints/mc.hint.bg
|
||||
/opt/share/mc/skins/modarcon16root.ini
|
||||
/opt/share/mc/skins/xoria256.ini
|
||||
/opt/lib/mc/cons.saver
|
||||
/opt/share/mc/syntax/sh.syntax
|
||||
/opt/share/mc/syntax/ini.syntax
|
||||
/opt/share/mc/syntax/privoxy.syntax
|
||||
/opt/share/mc/syntax/tcl.syntax
|
||||
/opt/share/mc/help/mc.hlp.ru
|
||||
/opt/share/mc/syntax/php.syntax
|
||||
/opt/share/mc/hints/mc.hint.ca
|
||||
/opt/lib/mc/extfs.d/ulha
|
||||
/opt/share/mc/syntax/debian-control.syntax
|
||||
/opt/lib/mc/extfs.d/patchsetfs
|
||||
/opt/share/mc/hints/mc.hint.cs
|
||||
/opt/share/mc/help/mc.hlp.sr
|
||||
/opt/share/mc/syntax/ruby.syntax
|
||||
/opt/share/mc/syntax/dos.syntax
|
||||
/opt/lib/mc/ext.d/video.sh
|
||||
/opt/lib/mc/shell/hardlink
|
||||
/opt/share/mc/hints/mc.hint.da
|
||||
/opt/lib/mc/extfs.d/ulib
|
||||
/opt/share/mc/syntax/unknown.syntax
|
||||
/opt/share/mc/hints/mc.hint.de
|
||||
/opt/share/mc/syntax/PKGBUILD.syntax
|
||||
/opt/share/mc/syntax/perl.syntax
|
||||
/opt/share/mc/syntax/ebuild.syntax
|
||||
/opt/share/mc/syntax/lisp.syntax
|
||||
/opt/share/mc/skins/modarcon16-defbg.ini
|
||||
/opt/lib/mc/shell/ln
|
||||
/opt/lib/mc/shell/ls
|
||||
/opt/share/mc/syntax/m4.syntax
|
||||
/opt/share/mc/syntax/lkr.syntax
|
||||
/opt/share/mc/syntax/diff.syntax
|
||||
/opt/share/mc/hints/mc.hint.el
|
||||
/opt/share/mc/hints/mc.hint
|
||||
/opt/share/mc/hints/mc.hint.eo
|
||||
/opt/share/mc/syntax/assembler.syntax
|
||||
/opt/share/mc/hints/mc.hint.pt_BR
|
||||
/opt/share/mc/hints/mc.hint.es
|
||||
/opt/share/mc/examples/macros.d/macro.0.sh
|
||||
/opt/share/mc/hints/mc.hint.et
|
||||
/opt/lib/mc/shell/mv
|
||||
/opt/share/mc/hints/mc.hint.eu
|
||||
/opt/lib/mc/shell/fexists
|
||||
/opt/share/mc/skins/modarin256-defbg.ini
|
||||
/opt/lib/mc/extfs.d/uar
|
||||
/opt/share/mc/hints/mc.hint.fa
|
||||
/opt/share/mc/syntax/cxx.syntax
|
||||
/opt/share/mc/hints/mc.hint.fr
|
||||
/opt/share/mc/syntax/hive.syntax
|
||||
/opt/lib/mc/extfs.d/deb
|
||||
/opt/lib/mc/extfs.d/uzoo
|
||||
/opt/share/mc/hints/mc.hint.ga
|
||||
/opt/share/mc/syntax/idl.syntax
|
||||
/opt/share/mc/hints/mc.hint.gl
|
||||
/opt/share/mc/syntax/js.syntax
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/etc/vsftpd/vsftpd.conf
|
||||
/opt/etc/vsftpd/vsftpd.conf
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: vsftpd
|
||||
Version: 3.0.5-2
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Conflicts: vsftpd-ext
|
||||
Source: feeds/packages/net/vsftpd
|
||||
SourceName: vsftpd
|
||||
License: GPLv2
|
||||
Section: net
|
||||
SourceDateEpoch: 1716287455
|
||||
URL: https://security.appspot.com/vsftpd.html
|
||||
CPE-ID: cpe:/a:vsftpd_project:vsftpd
|
||||
Maintainer: Cezary Jackiewicz <cezary@eko.one.pl>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 112640
|
||||
Description: Fast and secure FTP server (no TLS)
|
||||
@@ -0,0 +1,4 @@
|
||||
/opt/lib/upgrade/keep.d/vsftpd
|
||||
/opt/etc/vsftpd/vsftpd.conf
|
||||
/opt/sbin/vsftpd
|
||||
/opt/etc/init.d/S49vsftpd
|
||||
@@ -0,0 +1,18 @@
|
||||
Package: grep
|
||||
Version: 3.11-1
|
||||
Depends: libc, libssp, librt, libpthread, libpcre2
|
||||
Alternatives: 300:/opt/bin/egrep:/opt/libexec/egrep-gnu, 300:/opt/bin/fgrep:/opt/libexec/fgrep-gnu, 300:/opt/bin/grep:/opt/libexec/grep-gnu
|
||||
Source: feeds/packages/utils/grep
|
||||
SourceName: grep
|
||||
License: GPL-3.0-or-later
|
||||
LicenseFiles: COPYING
|
||||
Section: utils
|
||||
SourceDateEpoch: 1716287455
|
||||
URL: https://www.gnu.org/software/grep/
|
||||
CPE-ID: cpe:/a:gnu:grep
|
||||
Maintainer: Julen Landa Alustiza <julen@zokormazo.info>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 215040
|
||||
Description: The grep command searches one or more input files for lines
|
||||
containing a match to a specified pattern. By default, grep
|
||||
prints the matching lines.
|
||||
@@ -0,0 +1,3 @@
|
||||
/opt/libexec/grep-gnu
|
||||
/opt/libexec/egrep-gnu
|
||||
/opt/libexec/fgrep-gnu
|
||||
@@ -0,0 +1,17 @@
|
||||
Package: htop
|
||||
Version: 3.3.0-2
|
||||
Depends: libc, libssp, librt, libpthread, libncurses
|
||||
Source: feeds/packages/admin/htop
|
||||
SourceName: htop
|
||||
License: GPL-2.0-or-later
|
||||
LicenseFiles: COPYING
|
||||
Section: admin
|
||||
SourceDateEpoch: 1720609243
|
||||
URL: https://hisham.hm/htop/
|
||||
CPE-ID: cpe:/a:htop:htop
|
||||
Maintainer: Etienne CHAMPETIER <champetier.etienne@gmail.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 235520
|
||||
Description: Htop is an ncursed-based process viewer similar to top, but
|
||||
it allows to scroll the list vertically and horizontally to
|
||||
see all processes and their full command lines.
|
||||
@@ -0,0 +1 @@
|
||||
/opt/bin/htop
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: libaprutil
|
||||
Version: 1.6.3-1
|
||||
Depends: libc, libssp, librt, libpthread, libapr, libexpat, libuuid, libiconv-full
|
||||
Source: feeds/packages/libs/apr-util
|
||||
SourceName: apr-util
|
||||
License: Apache-2.0
|
||||
LicenseFiles: LICENSE
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720611674
|
||||
URL: http://apr.apache.org/
|
||||
CPE-ID: cpe:/a:apache:apr-util
|
||||
Maintainer: Thomas Heil <heil@terminal-consulting.de>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 163840
|
||||
Description: Apache Portable Runtime Utility Library
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libaprutil-1.so.0
|
||||
/opt/lib/libaprutil-1.so.0.6.3
|
||||
@@ -0,0 +1,24 @@
|
||||
Package: libffi
|
||||
Version: 3.4.6-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/packages/libs/libffi
|
||||
SourceName: libffi
|
||||
License: MIT
|
||||
LicenseFiles: LICENSE
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720612651
|
||||
URL: https://sourceware.org/libffi/
|
||||
CPE-ID: cpe:/a:libffi_project:libffi
|
||||
Maintainer: Peter Wagner <tripolar@gmx.at>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 51200
|
||||
Description: The libffi library provides a portable, high level programming interface to
|
||||
various calling conventions. This allows a programmer to call any function
|
||||
specified by a call interface description at run-time.
|
||||
|
||||
FFI stands for Foreign Function Interface. A foreign function interface is the
|
||||
popular name for the interface that allows code written in one language to call
|
||||
code written in another language. The libffi library really only provides the
|
||||
lowest, machine dependent layer of a fully featured foreign function interface.
|
||||
A layer must exist above libffi that handles type conversions for values passed
|
||||
between the two languages.
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libffi.so.8.1.4
|
||||
/opt/lib/libffi.so.8
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libiconv-full
|
||||
Version: 1.17-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/base/libs/libiconv-full
|
||||
SourceName: libiconv-full
|
||||
License: LGPL-2.1-or-later
|
||||
LicenseFiles: COPYING.LIB
|
||||
Section: libs
|
||||
SourceDateEpoch: 1658478628
|
||||
URL: https://www.gnu.org/software/libiconv/
|
||||
Maintainer: Jo-Philipp Wich <jo@mein.io>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 921600
|
||||
Description: Character set conversion library
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libiconv.so.2.6.1
|
||||
/opt/lib/libiconv.so.2
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libintl-full
|
||||
Version: 0.22.5-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/base/libs/gettext-full
|
||||
SourceName: gettext-full
|
||||
License: GPL-3.0-or-later
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720598025
|
||||
URL: http://www.gnu.org/software/gettext/
|
||||
CPE-ID: cpe:/a:gnu:gettext
|
||||
Maintainer: Jo-Philipp Wich <jo@mein.io>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 61440
|
||||
Description: GNU Internationalization library
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libintl.so.8
|
||||
/opt/lib/libintl.so.8.4.0
|
||||
@@ -0,0 +1,16 @@
|
||||
Package: libmbedtls
|
||||
Version: 3.6.0-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/base/libs/mbedtls
|
||||
SourceName: mbedtls
|
||||
License: GPL-2.0-or-later
|
||||
LicenseFiles: gpl-2.0.txt
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720598025
|
||||
URL: https://tls.mbed.org
|
||||
CPE-ID: cpe:/a:arm:mbed_tls
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 532480
|
||||
Description: The aim of the mbedtls project is to provide a quality, open-source
|
||||
cryptographic library written in C and targeted at embedded systems.
|
||||
This package contains the mbedtls library.
|
||||
@@ -0,0 +1,6 @@
|
||||
/opt/lib/libmbedx509.so.3.6.0
|
||||
/opt/lib/libmbedtls.so.3.6.0
|
||||
/opt/lib/libmbedx509.so.7
|
||||
/opt/lib/libmbedtls.so.21
|
||||
/opt/lib/libmbedcrypto.so.16
|
||||
/opt/lib/libmbedcrypto.so.3.6.0
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libncurses
|
||||
Version: 6.4-3
|
||||
Depends: libc, libssp, librt, libpthread, libncursesw
|
||||
Source: feeds/base/libs/ncurses
|
||||
SourceName: ncurses
|
||||
License: MIT
|
||||
LicenseFiles: README
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720598025
|
||||
URL: http://www.gnu.org/software/ncurses/
|
||||
CPE-ID: cpe:/a:gnu:ncurses
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 10240
|
||||
Description: Terminal handling library
|
||||
@@ -0,0 +1,13 @@
|
||||
/opt/lib/libform.so.6
|
||||
/opt/lib/libform.so
|
||||
/opt/lib/libmenu.so
|
||||
/opt/lib/libmenu.so.6
|
||||
/opt/lib/libpanel.so.6.4
|
||||
/opt/lib/libpanel.so.6
|
||||
/opt/lib/libncurses.so.6
|
||||
/opt/lib/libform.so.6.4
|
||||
/opt/lib/libncurses.so
|
||||
/opt/lib/libncurses.so.6.4
|
||||
/opt/lib/libmenu.so.6.4
|
||||
/opt/lib/libpanel.so
|
||||
/opt/lib/libcurses.so
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libncursesw
|
||||
Version: 6.4-3
|
||||
Depends: libc, libssp, librt, libpthread, terminfo
|
||||
Source: feeds/base/libs/ncurses
|
||||
SourceName: ncurses
|
||||
License: MIT
|
||||
LicenseFiles: README
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720598025
|
||||
URL: http://www.gnu.org/software/ncurses/
|
||||
CPE-ID: cpe:/a:gnu:ncurses
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 471040
|
||||
Description: Terminal handling library (Unicode)
|
||||
@@ -0,0 +1,12 @@
|
||||
/opt/lib/libmenuw.so.6.4
|
||||
/opt/lib/libpanelw.so
|
||||
/opt/lib/libpanelw.so.6
|
||||
/opt/lib/libformw.so.6
|
||||
/opt/lib/libmenuw.so.6
|
||||
/opt/lib/libncursesw.so.6.4
|
||||
/opt/lib/libncursesw.so
|
||||
/opt/lib/libpanelw.so.6.4
|
||||
/opt/lib/libformw.so
|
||||
/opt/lib/libncursesw.so.6
|
||||
/opt/lib/libmenuw.so
|
||||
/opt/lib/libformw.so.6.4
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libnettle
|
||||
Version: 3.9.1-1
|
||||
Depends: libc, libssp, librt, libpthread, libgmp
|
||||
Source: feeds/base/libs/nettle
|
||||
SourceName: nettle
|
||||
License: GPL-2.0-or-later
|
||||
LicenseFiles: COPYING
|
||||
Section: libs
|
||||
SourceDateEpoch: 1692466257
|
||||
URL: http://www.lysator.liu.se/~nisse/nettle/
|
||||
CPE-ID: cpe:/a:nettle_project:nettle
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 573440
|
||||
Description: GNU crypto library
|
||||
@@ -0,0 +1,4 @@
|
||||
/opt/lib/libhogweed.so.6
|
||||
/opt/lib/libhogweed.so.6.8
|
||||
/opt/lib/libnettle.so.8.8
|
||||
/opt/lib/libnettle.so.8
|
||||
@@ -0,0 +1,19 @@
|
||||
Package: libopenssl
|
||||
Version: 3.0.14-2
|
||||
Depends: libc, libssp, librt, libpthread, zlib, libatomic
|
||||
Source: feeds/base/libs/openssl
|
||||
SourceName: openssl
|
||||
License: Apache-2.0
|
||||
LicenseFiles: LICENSE
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720603199
|
||||
URL: http://www.openssl.org/
|
||||
CPE-ID: cpe:/a:openssl:openssl
|
||||
Maintainer: Eneas U de Queiroz <cotequeiroz@gmail.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 3543040
|
||||
Description: The OpenSSL Project is a collaborative effort to develop a robust,
|
||||
commercial-grade, full-featured, and Open Source toolkit implementing the
|
||||
Transport Layer Security (TLS) protocol as well as a full-strength
|
||||
general-purpose cryptography library.
|
||||
This package contains the OpenSSL shared libraries, needed by other programs.
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libssl.so.3
|
||||
/opt/lib/libcrypto.so.3
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: libpcre2
|
||||
Version: 10.42-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/base/libs/pcre2
|
||||
SourceName: pcre2
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: LICENCE
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720598025
|
||||
URL: https://www.pcre.org/
|
||||
CPE-ID: cpe:/a:pcre:pcre2
|
||||
Maintainer: Shane Peelar <lookatyouhacker@gmail.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 573440
|
||||
Description: A Perl Compatible Regular Expression library
|
||||
@@ -0,0 +1,6 @@
|
||||
/opt/lib/libpcre2-8.so.0
|
||||
/opt/lib/libpcre2-posix.so.3.0.4
|
||||
/opt/lib/libpcre2-posix.so.3
|
||||
/opt/lib/libpcre2-8.so
|
||||
/opt/lib/libpcre2-8.so.0.11.2
|
||||
/opt/lib/libpcre2-posix.so
|
||||
@@ -0,0 +1,17 @@
|
||||
Package: libslang2
|
||||
Version: 2.3.3-2
|
||||
Depends: libc, libssp, librt, libpthread, terminfo
|
||||
Source: feeds/packages/libs/slang2
|
||||
SourceName: slang
|
||||
License: GPL-2.0-or-later
|
||||
LicenseFiles: COPYING
|
||||
Section: libs
|
||||
SourceDateEpoch: 1716287455
|
||||
URL: https://www.jedsoft.org/slang/
|
||||
Maintainer: Jeffery To <jeffery.to@gmail.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 1320960
|
||||
Description: Multi-platform programmer's library providing facilities for interactive
|
||||
applications. Includes such things as display/screen management,
|
||||
keyboard input, keymaps, etc. Includes the embeddable S-Lang
|
||||
interpreter.
|
||||
@@ -0,0 +1,3 @@
|
||||
/opt/lib/libslang.so
|
||||
/opt/lib/libslang.so.2
|
||||
/opt/lib/libslang.so.2.3.3
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: libssh2
|
||||
Version: 1.11.0-1
|
||||
Depends: libc, libssp, librt, libpthread, libmbedtls, zlib
|
||||
Source: feeds/packages/libs/libssh2
|
||||
SourceName: libssh2
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: libs
|
||||
SourceDateEpoch: 1721572854
|
||||
URL: https://www.libssh2.org/
|
||||
CPE-ID: cpe:/a:libssh2:libssh2
|
||||
Maintainer: Jiri Slachta <jiri@slachta.eu>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 194560
|
||||
Description: libssh2 is a client-side C library implementing the SSH2 protocol.
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libssh2.so.1
|
||||
/opt/lib/libssh2.so.1.0.1
|
||||
@@ -0,0 +1,12 @@
|
||||
Package: libssp
|
||||
Version: 8.4.0-11
|
||||
Source: feeds/base/libs/toolchain
|
||||
SourceName: toolchain
|
||||
License: GPL-3.0-with-GCC-exception
|
||||
Section: libs
|
||||
SourceDateEpoch: 1600326586
|
||||
URL: http://gcc.gnu.org/
|
||||
Maintainer: Felix Fietkau <nbd@nbd.name>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 20480
|
||||
Description: GCC support library
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libssp.so.0.0.0
|
||||
/opt/lib/libssp.so.0
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libtirpc
|
||||
Version: 1.3.4-1
|
||||
Depends: libc, libssp, librt, libpthread, libpthread
|
||||
Source: feeds/packages/libs/libtirpc
|
||||
SourceName: libtirpc
|
||||
License: BSD-3-Clause
|
||||
LicenseFiles: COPYING
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720613789
|
||||
URL: http://libtirpc.sourceforge.net/
|
||||
CPE-ID: cpe:/a:libtirpc_project:libtirpc
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 133120
|
||||
Description: Library TI RPC for RPC bindings
|
||||
@@ -0,0 +1,4 @@
|
||||
/opt/etc/netconfig
|
||||
/opt/lib/libtirpc.so.3
|
||||
/opt/lib/libtirpc.so
|
||||
/opt/lib/libtirpc.so.3.0.0
|
||||
@@ -0,0 +1,12 @@
|
||||
Package: locales
|
||||
Version: 2.27-9
|
||||
Depends: libc, libssp, librt, libpthread, grep
|
||||
Source: feeds/rtndev/locales
|
||||
SourceName: locales
|
||||
Section: libs
|
||||
SourceDateEpoch: 1708601332
|
||||
URL: http://gcc.gnu.org/
|
||||
Maintainer: Entware team, https://entware.net
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 1669120
|
||||
Description: locales support (independent of system lib)
|
||||
@@ -0,0 +1,24 @@
|
||||
/opt/usr/share/i18n/locales/iso14651_t1
|
||||
/opt/usr/share/i18n/locales/translit_compat
|
||||
/opt/usr/share/i18n/locales/translit_font
|
||||
/opt/usr/share/i18n/locales/translit_narrow
|
||||
/opt/usr/share/i18n/locales/i18n
|
||||
/opt/usr/share/i18n/locales/translit_neutral
|
||||
/opt/usr/share/i18n/locales/en_US
|
||||
/opt/usr/share/i18n/locales/translit_cjk_compat
|
||||
/opt/usr/share/i18n/locales/fr_FR
|
||||
/opt/usr/share/i18n/locales/translit_circle
|
||||
/opt/usr/share/i18n/locales/i18n_ctype
|
||||
/opt/usr/share/i18n/locales/iso14651_t1_common
|
||||
/opt/usr/share/i18n/locales/ru_RU
|
||||
/opt/usr/share/i18n/charmaps/UTF-8.gz
|
||||
/opt/usr/share/i18n/locales/translit_combining
|
||||
/opt/usr/share/i18n/charmaps/ANSI_X3.4-1968.gz
|
||||
/opt/usr/share/i18n/locales/de_DE
|
||||
/opt/bin/localedef.new
|
||||
/opt/usr/share/i18n/locales/en_GB
|
||||
/opt/bin/locale.new
|
||||
/opt/usr/share/i18n/locales/translit_small
|
||||
/opt/usr/share/i18n/locales/translit_fraction
|
||||
/opt/usr/share/i18n/locales/it_IT
|
||||
/opt/usr/share/i18n/locales/translit_wide
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo 'Entware uses separate locale-archive file independent from main system'
|
||||
if ! [ -f '/opt/usr/lib/locale/locale-archive' ]; then
|
||||
mkdir -p /opt/usr/lib/locale
|
||||
echo 'Creating locale archive /opt/usr/lib/locale/locale-archive'
|
||||
echo 'Adding en_EN.UTF-8'
|
||||
/opt/bin/localedef.new -c -f UTF-8 -i en_US en_US.UTF-8
|
||||
echo 'Adding ru_RU.UTF-8'
|
||||
/opt/bin/localedef.new -c -f UTF-8 -i ru_RU ru_RU.UTF-8
|
||||
fi
|
||||
if ! [ -f '/opt/usr/lib/locale/locale-archive' ]; then
|
||||
echo 'locale-archive file was not created, not enough memory? Downloading...'
|
||||
wget http://bin.entware.net/other/locale-archive.2.27 -O /opt/usr/lib/locale/locale-archive
|
||||
fi
|
||||
echo 'You can download locale sources from http://bin.entware.net/other/i18n_glib227.tar.gz'
|
||||
echo 'You can add new locales to Entware using /opt/bin/localedef.new'
|
||||
exit 0
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -x '/opt/bin/locale.new' ] && [ -z "$(/opt/bin/locale.new -V | grep 2.27)" ]; then
|
||||
echo 'locale-archive needs upgrade, deleting old one.'
|
||||
rm -f /opt/usr/lib/locale/locale-archive
|
||||
fi
|
||||
exit 0
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: terminfo
|
||||
Version: 6.4-3
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/base/libs/ncurses
|
||||
SourceName: ncurses
|
||||
License: MIT
|
||||
LicenseFiles: README
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720598025
|
||||
URL: http://www.gnu.org/software/ncurses/
|
||||
CPE-ID: cpe:/a:gnu:ncurses
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 61440
|
||||
Description: Terminal Info Database (ncurses)
|
||||
@@ -0,0 +1,16 @@
|
||||
/opt/share/terminfo/t/tmux-256color
|
||||
/opt/share/terminfo/a/ansi
|
||||
/opt/share/terminfo/d/dumb
|
||||
/opt/share/terminfo/r/rxvt
|
||||
/opt/share/terminfo/r/rxvt-unicode
|
||||
/opt/share/terminfo/x/xterm-utf8
|
||||
/opt/share/terminfo/x/xterm-256color
|
||||
/opt/share/terminfo/l/linux
|
||||
/opt/share/terminfo/v/vt100
|
||||
/opt/share/terminfo/v/vt102
|
||||
/opt/share/terminfo/x/xterm-color
|
||||
/opt/share/terminfo/x/xterm
|
||||
/opt/share/terminfo/a/alacritty
|
||||
/opt/share/terminfo/s/screen-256color
|
||||
/opt/share/terminfo/s/screen
|
||||
/opt/share/terminfo/t/tmux
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
grep -q "^export TERMINFO" /opt/etc/profile || echo "export TERMINFO=/opt/share/terminfo" >> /opt/etc/profile
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: glib2
|
||||
Version: 2.80.3-1
|
||||
Depends: libc, libssp, librt, libpthread, libiconv-full, libintl-full, zlib, libpthread, libffi, libattr, libpcre2
|
||||
Source: feeds/packages/libs/glib2
|
||||
SourceName: glib2
|
||||
License: LGPL-2.1-or-later
|
||||
LicenseFiles: COPYING
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720611845
|
||||
URL: http://www.gtk.org/
|
||||
CPE-ID: cpe:/a:gnome:glib
|
||||
Maintainer: Peter Wagner <tripolar@gmx.at>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 3112960
|
||||
Description: The GLib library of C routines
|
||||
@@ -0,0 +1,18 @@
|
||||
/opt/lib/libgmodule-2.0.so.0
|
||||
/opt/lib/libgmodule-2.0.so.0.8000.3
|
||||
/opt/lib/libglib-2.0.so.0
|
||||
/opt/lib/libgirepository-2.0.so.0.8000.3
|
||||
/opt/lib/libgthread-2.0.so.0.8000.3
|
||||
/opt/lib/libgthread-2.0.so.0
|
||||
/opt/lib/libgio-2.0.so
|
||||
/opt/lib/libgobject-2.0.so
|
||||
/opt/lib/libgirepository-2.0.so.0
|
||||
/opt/lib/libgobject-2.0.so.0.8000.3
|
||||
/opt/lib/libgmodule-2.0.so
|
||||
/opt/lib/libglib-2.0.so
|
||||
/opt/lib/libgio-2.0.so.0.8000.3
|
||||
/opt/lib/libgio-2.0.so.0
|
||||
/opt/lib/libgobject-2.0.so.0
|
||||
/opt/lib/libgthread-2.0.so
|
||||
/opt/lib/libglib-2.0.so.0.8000.3
|
||||
/opt/lib/libgirepository-2.0.so
|
||||
@@ -0,0 +1,20 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /usr/lib/libgmodule-2.0.so.0
|
||||
MISSING: libgmodule-2.0.so.0.8000.3
|
||||
FOUND: /usr/lib/libglib-2.0.so.0
|
||||
MISSING: libgirepository-2.0.so.0.8000.3
|
||||
MISSING: libgthread-2.0.so.0.8000.3
|
||||
FOUND: /usr/lib/libgthread-2.0.so.0
|
||||
MISSING: libgio-2.0.so
|
||||
MISSING: libgobject-2.0.so
|
||||
MISSING: libgirepository-2.0.so.0
|
||||
MISSING: libgobject-2.0.so.0.8000.3
|
||||
MISSING: libgmodule-2.0.so
|
||||
MISSING: libglib-2.0.so
|
||||
MISSING: libgio-2.0.so.0.8000.3
|
||||
FOUND: /usr/lib/libgio-2.0.so.0
|
||||
FOUND: /usr/lib/libgobject-2.0.so.0
|
||||
MISSING: libgthread-2.0.so
|
||||
MISSING: libglib-2.0.so.0.8000.3
|
||||
MISSING: libgirepository-2.0.so
|
||||
@@ -0,0 +1,16 @@
|
||||
Package: libattr
|
||||
Version: 2.5.2-3
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/packages/utils/attr
|
||||
SourceName: attr
|
||||
License: LGPL-2.1-or-later
|
||||
LicenseFiles: doc/COPYING.LGPL
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720621812
|
||||
URL: http://savannah.nongnu.org/projects/attr
|
||||
CPE-ID: cpe:/a:attr_project:attr
|
||||
Maintainer: Maxim Storchak <m.storchak@gmail.com>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 20480
|
||||
Description: Extended attributes support
|
||||
This package provides libattr
|
||||
@@ -0,0 +1,4 @@
|
||||
/opt/lib/libattr.so.1
|
||||
/opt/lib/libattr.so.1.1.2502
|
||||
/opt/etc/xattr.conf
|
||||
/opt/lib/libattr.so
|
||||
@@ -0,0 +1,6 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /usr/lib/libattr.so.1
|
||||
MISSING: libattr.so.1.1.2502
|
||||
MISSING: xattr.conf
|
||||
MISSING: libattr.so
|
||||
@@ -0,0 +1,17 @@
|
||||
Package: libblkid
|
||||
Version: 2.40.1-1
|
||||
Depends: libc, libssp, librt, libpthread, libuuid
|
||||
Source: feeds/base/utils/util-linux
|
||||
SourceName: util-linux
|
||||
License: GPL-2.0-only
|
||||
LicenseFiles: COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720778201
|
||||
URL: http://www.kernel.org/pub/linux/utils/util-linux/
|
||||
CPE-ID: cpe:/a:kernel:util-linux
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 245760
|
||||
Description: The libblkid library is used to identify block devices (disks) as to their
|
||||
content (e.g. filesystem type, partitions) as well as extracting additional
|
||||
information such as filesystem labels/volume names, partitions, unique
|
||||
identifiers/serial numbers...
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libblkid.so.1.1.0
|
||||
/opt/lib/libblkid.so.1
|
||||
@@ -0,0 +1,4 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /lib/libblkid.so.1.1.0
|
||||
MISSING: ibblkid.so.1
|
||||
@@ -0,0 +1,13 @@
|
||||
Package: libc
|
||||
Version: 2.27-11
|
||||
Depends: libgcc
|
||||
Source: feeds/base/libs/toolchain
|
||||
SourceName: toolchain
|
||||
License: GPL-3.0-with-GCC-exception
|
||||
Section: libs
|
||||
SourceDateEpoch: 1600326586
|
||||
URL: http://www.gnu.org/software/libc/
|
||||
Maintainer: Felix Fietkau <nbd@nbd.name>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 2600960
|
||||
Description: C library
|
||||
@@ -0,0 +1,27 @@
|
||||
/opt/lib/libnsl.so.1
|
||||
/opt/etc/nsswitch.conf
|
||||
/opt/lib/libanl-2.27.so
|
||||
/opt/lib/libnss_files-2.27.so
|
||||
/opt/lib/libm.so.6
|
||||
/opt/lib/libc-2.27.so
|
||||
/opt/lib/libnss_dns-2.27.so
|
||||
/opt/lib/libpcprofile.so
|
||||
/opt/lib/libnss_files.so.2
|
||||
/opt/lib/libresolv-2.27.so
|
||||
/opt/lib/libanl.so.1
|
||||
/opt/lib/libdl-2.27.so
|
||||
/opt/lib/ld-2.27.so
|
||||
/opt/lib/libresolv.so.2
|
||||
/opt/lib/libutil.so.1
|
||||
/opt/lib/libdl.so.2
|
||||
/opt/lib/libutil-2.27.so
|
||||
/opt/lib/libnsl-2.27.so
|
||||
/opt/lib/libc.so.6
|
||||
/opt/lib/libnss_dns.so.2
|
||||
/opt/lib/libmemusage.so
|
||||
/opt/lib/libm-2.27.so
|
||||
/opt/lib/libcidn.so.1
|
||||
/opt/lib/libcrypt-2.27.so
|
||||
/opt/lib/libcrypt.so.1
|
||||
/opt/lib/libcidn-2.27.so
|
||||
/opt/lib/ld-linux.so.3
|
||||
@@ -0,0 +1,29 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /lib/libnsl.so.1
|
||||
FOUND: /etc/nsswitch.conf
|
||||
MISSING: libanl-2.27.so
|
||||
MISSING: libnss_files-2.27.so
|
||||
FOUND: /lib/libm.so.6
|
||||
MISSING: libc-2.27.so
|
||||
MISSING: libnss_dns-2.27.so
|
||||
MISSING: libpcprofile.so
|
||||
FOUND: /lib/libnss_files.so.2
|
||||
MISSING: libresolv-2.27.so
|
||||
FOUND: /lib/libanl.so.1
|
||||
MISSING: libdl-2.27.so
|
||||
MISSING: ld-2.27.so
|
||||
FOUND: /lib/libresolv.so.2
|
||||
FOUND: /lib/libutil.so.1
|
||||
FOUND: /lib/libdl.so.2
|
||||
MISSING: libutil-2.27.so
|
||||
MISSING: libnsl-2.27.so
|
||||
FOUND: /lib/libc.so.6
|
||||
FOUND: /lib/libnss_dns.so.2
|
||||
MISSING: libmemusage.so
|
||||
MISSING: libm-2.27.so
|
||||
MISSING: libcidn.so.1
|
||||
MISSING: libcrypt-2.27.so
|
||||
MISSING: libcrypt.so.1
|
||||
MISSING: libcidn-2.27.so
|
||||
MISSING: ld-linux.so.3
|
||||
@@ -0,0 +1,15 @@
|
||||
Package: libexpat
|
||||
Version: 2.6.2-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/packages/libs/expat
|
||||
SourceName: expat
|
||||
License: MIT
|
||||
LicenseFiles: COPYING
|
||||
Section: libs
|
||||
SourceDateEpoch: 1720611676
|
||||
URL: https://libexpat.github.io/
|
||||
CPE-ID: cpe:/a:libexpat_project:libexpat
|
||||
Maintainer: Ted Hess <thess@kitschensync.net>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 143360
|
||||
Description: A fast, non-validating, stream-oriented XML parsing library.
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libexpat.so.1
|
||||
/opt/lib/libexpat.so.1.9.2
|
||||
@@ -0,0 +1,4 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /usr/lib/libexpat.so.1
|
||||
MISSING: libexpat.so.1.9.2
|
||||
@@ -0,0 +1,14 @@
|
||||
Package: libgmp
|
||||
Version: 6.3.0-1
|
||||
Depends: libc, libssp, librt, libpthread
|
||||
Source: feeds/base/libs/gmp
|
||||
SourceName: gmp
|
||||
License: GPL-2.0-or-later
|
||||
Section: libs
|
||||
SourceDateEpoch: 1707310794
|
||||
URL: http://gmplib.org/
|
||||
CPE-ID: cpe:/a:gmplib:gmp
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 399360
|
||||
Description: GMP is a free library for arbitrary precision arithmetic, operating on
|
||||
signed integers, rational numbers, and floating point numbers.
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libgmp.so.10
|
||||
/opt/lib/libgmp.so.10.5.0
|
||||
@@ -0,0 +1,4 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /usr/lib/libgmp.so.10
|
||||
MISSING: libgmp.so.10.5.0
|
||||
@@ -0,0 +1,13 @@
|
||||
Package: libpthread
|
||||
Version: 2.27-11
|
||||
Depends: libgcc
|
||||
Source: feeds/base/libs/toolchain
|
||||
SourceName: toolchain
|
||||
License: GPL-3.0-with-GCC-exception
|
||||
Section: libs
|
||||
SourceDateEpoch: 1600326586
|
||||
URL: http://www.gnu.org/software/libc/
|
||||
Maintainer: Felix Fietkau <nbd@nbd.name>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 102400
|
||||
Description: POSIX thread library
|
||||
@@ -0,0 +1,2 @@
|
||||
/opt/lib/libpthread.so.0
|
||||
/opt/lib/libpthread-2.27.so
|
||||
@@ -0,0 +1,4 @@
|
||||
root@sdxlemur:~# fndfiles
|
||||
Checking for files in /lib and /usr/lib...
|
||||
FOUND: /lib/libpthread.so.0
|
||||
MISSING: libpthread-2.27.so
|
||||
@@ -0,0 +1,13 @@
|
||||
Package: librt
|
||||
Version: 2.27-11
|
||||
Depends: libpthread
|
||||
Source: feeds/base/libs/toolchain
|
||||
SourceName: toolchain
|
||||
License: GPL-3.0-with-GCC-exception
|
||||
Section: libs
|
||||
SourceDateEpoch: 1600326586
|
||||
URL: http://www.gnu.org/software/libc/
|
||||
Maintainer: Felix Fietkau <nbd@nbd.name>
|
||||
Architecture: armv7-3.2
|
||||
Installed-Size: 30720
|
||||
Description: POSIX.1b RealTime extension library
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user