61
Zaurus - Hardware discussion / Re: C3000 can't update when the microdrive is missing
« Last post by DiTBho on June 25, 2025, 10:08:08 am »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
Code: [Select]
### 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
I wonder what the point is in coding a script that absurdly...
In any case, this is where it probes for the microdrive.

Recent Posts