1
Zaurus - Void Linux support / Re: Void Install Guide
« on: August 26, 2025, 01:11:22 am »
Do you mean external hard drive?
If so, you d best use externally powered units
If so, you d best use externally powered units
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
mykboot-v5-r30_modified $ make run
mykboot_init ...
fb_init_mode_set()
Switching to 32bpp mode ...failure
Switching to 24bpp mode ...failure
Switching to 18bpp mode ...failure
Switching to 15pp mode ...failure
Switching to 16bpp mode ...success
angle = 90 detected
fb_init_geometry_set(): 480 640 16
I guess the simplest way to fix this is to by editing the update.sh script to remove the need for the microdrive. The file itself is encoded with a simple character substitution algorithm, here's a simple program to encode/decode it: endecsh.c at the bottom of this page:
https://web.archive.org/web/20160505230130/http://www.h5.dion.ne.jp/~rimemoon/zaurus/memo_008.htm
### Check model ###
/sbin/writerominfo
MODEL=`cat /proc/deviceinfo/product`
case "$MODEL" in
SL-B500|SL-5600)
ZAURUS='poodle'
;;
SL-6000)
ZAURUS='tosa'
;;
SL-C1000)
ZAURUS='akita'
;;
SL-C700|SL-C750|SL-7500|SL-C760|SL-C860)
ZAURUS='c7x0'
;;
SL-C3000|SL-C3100|SL-C3200)
ZAURUS='c3x00'
check_for_hdd
check_for_tar
;;
*)
echo 'MODEL: '$MODEL 'is unsupported'
echo ''
echo 'Please reset'
while true
do
done
;;
esac
Yes, the Zaurus section of the forum unfortunately has a very low activity since many years, which is expected since only the SL-5500 and SL-6000 models were sold outside Japan. I still have my collection of Zauruses and switch them on from time to time, I read the posts here with interest.
I suspect there are other users following the various threads but they never answer. We have a views counter for each thread, there are between 5000 and 19000 views for each of them, though most of them are be probably made by bots. I prefer to keep the subforums open for read-only access for non-registered users, so that it's easier for Google to index the pages and make the information here more accessible.
Other users that have posted here in the past are probably following this subforum. To any of you, please post here so that we can have a rough idea of how many of us are here.
Varti
macmini2-intel irc # echo "https://logs.nslu2-linux.org/livelogs/kexecboot/" > url
macmini2-intel irc # myNET-get-files-from-url url
list_preparing1, getting index.html ... success
preparing /list ... done
downloading [kexecboot_20110601.txt] ... success
downloading [kexecboot_20110602.txt] ... success
downloading [kexecboot_20110603.txt] ... success
downloading [kexecboot_20110604.txt] ... success
downloading [kexecboot_20110605.txt] ... success
downloading [kexecboot_20110606.txt] ... success
downloading [kexecboot_20110607.txt] ... success
downloading [kexecboot_20110608.txt] ... success
downloading [kexecboot_20110609.txt] ... success
downloading [kexecboot_20110610.txt] ... success
downloading [kexecboot_20110611.txt] ... success
downloading [kexecboot_20110612.txt] ... success
downloading [kexecboot_20110613.txt] ... success
downloading [kexecboot_20110614.txt] ... success
downloading [kexecboot_20110615.txt] ... success
downloading [kexecboot_20110616.txt] ... success
downloading [kexecboot_20110617.txt] ... success
downloading [kexecboot_20110618.txt] ... success
downloading [kexecboot_20110619.txt] ... success
disable apm_queue_event() on key_suspend
--- drivers/input/apm-power.c.original 2025-05-02 17:58:24.140000000 -0000
+++ drivers/input/apm-power.c 2025-05-02 17:58:23.788000000 -0000
@@ -20,7 +20,7 @@
{
switch (keycode) {
case KEY_SUSPEND:
- apm_queue_event(APM_USER_SUSPEND);
+ // apm_queue_event(APM_USER_SUSPEND);
pr_info("Requesting system suspend...\n");
break;
default: