Search found 49 matches

by shv
Wed 26. Aug 2026, 11:12
Forum: Tweaks
Topic: USB sleep (USB disk somnifacient)
Replies: 0
Views: 9

USB sleep (USB disk somnifacient)

To activate USB sleep for fw5 devices you have to disable the check in Tweaks/gui/Tweaks/plugins/usbsleep.sh as shown in the code snippet below:
usbsleep_IsAvailable()
{
# On the firmware 5 hd-idle already keeps an eye on the USB disks
# You can remove this check to re-enable this daemon.
# In ...
by shv
Wed 26. Aug 2026, 10:23
Forum: Entware-ng
Topic: Package update: Entware-ng
Replies: 6
Views: 90

Re: Package update: Entware-ng

I had to add a check for an existing but empty lasturl file to prevent a damaged content in ${PKG_DOWNLOAD_URL}:
ExchangeDownloadUrl()
{
<------>local LASTURL="/tmp/.MetaRepository/tmp/lasturl"
<------>if [ -f ${LASTURL} && ! -s ${LASTURL} ] ; then
<------><------>local url=$(cat /tmp ...
by shv
Mon 17. Aug 2026, 15:55
Forum: Entware-ng
Topic: Package update: Entware-ng
Replies: 6
Views: 90

Re: Package update: Entware-ng

Mijzelf , can you please test the updated Entware package? I have currently the problem that the profile-hook sometimes works and sometimes doesn't work. It seams that it depends on the order of installation. I used different commands after a new installation of the Entware package:

Installation ...
by shv
Mon 17. Aug 2026, 14:22
Forum: Entware-ng
Topic: Package update: Entware-ng
Replies: 6
Views: 90

Re: Package update: Entware-ng

The package list in the web GUI isn't correct for armv7. It should be taken from https://bin.entware.net/armv7sf-k2.6/ instead of http://pkg.entware.net/binaries/armv7/.
by shv
Sun 16. Aug 2026, 18:09
Forum: Entware-ng
Topic: Package update: Entware-ng
Replies: 6
Views: 90

Re: New package: Entware-ng

A new package is available in the test repo: https://zyxel.ddnss.eu/Users/Mijzelf/zy ... o/test/shv

For fw7 devices it is recommended to execute the following commands after package installation:

Code: Select all

opkg update
opkg upgrade
opkg remove profile-hook
opkg install profile-hook
by shv
Sun 16. Aug 2026, 14:46
Forum: NAS Geräte - FW5 Geräte / NAS devices - FW5 devices
Topic: Midnight Commander on NAS542
Replies: 15
Views: 327

Re: Midnight Commander on NAS542

I've updated the package due to inconsitent PKG_VERSION of the control files.
by shv
Sun 16. Aug 2026, 14:27
Forum: MetaRepository
Topic: Update of MetaRepository package
Replies: 2
Views: 55

Re: Update of MetaRepository package

I added two lines in the control file to select the right fw5_stock_packages sub directory for NAS326:
for file in "/etc/${PKG_NAME}.conf" "/etc/init.d/${PKG_NAME}" "/gui/MetaRepository/pkgcgi.cgi" "/zypkg_conf/info/${PKG_NAME}.postinst"
do
<------>path=${PKG_ROOT}/${file}
<------>sed -i "s|/usr ...
by shv
Sun 16. Aug 2026, 10:29
Forum: MetaRepository
Topic: Update of MetaRepository package
Replies: 2
Views: 55

Update of MetaRepository package

I try to update the default configuration of MetaRepository to the new server zyxel.ddnss.eu incl. the Mirror of the stock packages.
# Official repository
# ftp://ftp2.zyxel.com/+ ZyXEL
# Mijzelf's mirror
https://zyxel.ddnss.eu/Users/Mijzelf/zypkg-repo/fw4_stock_packages/ Mirror
# German mirror ...
by shv
Fri 14. Aug 2026, 10:57
Forum: NAS Geräte - FW5 Geräte / NAS devices - FW5 devices
Topic: Midnight Commander on NAS542
Replies: 15
Views: 327

Re: Midnight Commander on NAS542

The updated package is available in my test REPO https://zyxel.ddnss.eu/Users/Mijzelf/zy ... /test/shv/. Can you please check if it is working on your NAS520(fw4)?
by shv
Fri 14. Aug 2026, 10:12
Forum: NAS Geräte - FW5 Geräte / NAS devices - FW5 devices
Topic: Midnight Commander on NAS542
Replies: 15
Views: 327

Re: Midnight Commander on NAS542

A better approach is to add libiconv.so.2 directly into the zkpg package and delete the library for fw4 devices in the startup script
Startup()
{
# Enable ld-linux.so on NAS5xx
[ ! -f /lib/ld-linux.so.3 -a -f /lib/ld-linux-armhf.so.3 ] && ln -s ld-linux-armhf.so.3 /lib/ld-linux.so.3

for file in ...