Show Posts

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.


Messages - darac

Pages: [1]
1
Archos forum / Welcome To The Archos Forums
« on: April 15, 2005, 05:49:10 am »
Now that's a sweet piece of PDA! 30Gb hard drive in the palm of your hand? That's as much as my PIII laptop's got.

I can see it being a brilliant Multi-media device (Heck, the thing's basically a pocket TiVo), but not a terribly brilliant PDA. I find the built-in hardware keyboard of the Zaurii just so useful and obvious that I don't think I could contemplate a PDA without it (especially if you're going to be hacking around at the command line with it). Also, there's somthing that I didn't spot on the picture on the website is a headphone socket. I wouldn't be surprised if USB headphones exist, but would it have been so hard to squeeze a 3.5mm jack in somewhere?

Anyway, nice device. When's OE being ported to it?

2
Angstrom & OpenZaurus / Socket Low Power Wi-fi Under 3.5.2?
« on: April 14, 2005, 06:05:24 am »
This is Probably not terribly useful, but I've got a Symbol Spectrum24 (Identifies as an LA4100, too) that works perfectly for me using the latest Hentges ROM (T7, OZ 3.5.2) I had to re-flash with T7 recently to get the 802.11 settings in the Network Control Panel, but since then it's worked perfectly.

3
Angstrom & OpenZaurus / Usb Connection Howto
« on: April 13, 2005, 04:45:56 pm »
Zaurus:
SL-5500 (Collie)
Hentges.net ROM T7 (based on OpenZaurus 3.5.2)

PC:
Debian 3.1 "Sarge", Vanilla Kernel 2.6.11.6 (Should work with earlier 2.6 kernels, but note that the driver location has moved.)

Drivers:
Device Drivers -> USB Support -> USB Network Adapters
Set "Multi-purpose USB Networking Framework" as a Module and turn on "Embedded ARM Linux links (iPaq, ...)" and "Sharp Zaurus (stock ROMs)"
Rebuild your kernel or just "make; make modules_install" if you're feeling brave.
(In other words, CONFIG_USB_USBNET=m, CONFIG_USB_ARMLINUX=y and CONFIG_USB_ZAURUS=y)

This will make the "usbnet.ko" module.

PC-Side changes
Install the "hotplug" package.

Add the following line into /etc/hotplug/usb.distmap:
Code: [Select]
usbnet    0x003    0x04dd    0x8004    0x0000    0x0000    0x00    0x00    0x00    0x00    0x00    0x00    0x00000000(That's one single line with Thirteen (13) white-space-delimited fields)

Now create the following file /etc/hotplug/usb/usbnet:
Code: [Select]
#! /bin/bash
typeset -i num
num=`ifconfig | grep usb0 | wc -l`
if [ $num -eq 0 ]; then
    ifup usb0
else
    ifdown usb0
    sleep 1
    ifup usb0
fi
and make it executable with "chmod +x /etc/hotplug/usb/usbnet"

Add the following to /etc/network/interfaces:
Code: [Select]
# USBd Interface to the Zaurus
# Statically configure the interface (i.e. no DHCP)
iface usb0 inet static
    address 192.168.129.200     # Address of PC's end of link
    pointopoint 192.168.129.201   # Address of Zaurus' end of link
    netmask 255.255.255.255
    # Now call some commands when the link comes up
    up iptables -t nat -F      # Flush the NAT table
    up iptables -t nat -A POSTROUTING -j SNAT -o eth0 --to $addr
         # Set up Source Network Address Translation (SNAT)
         # Note:
         # eth0 - Interface towards the internet.
         #   This can probably be ppp0 if the PC is dialled up.
         # $addr - Set this to the address of the above interface.
    up echo "1" > /proc/sys/net/ipv4/ip_forward
                    # Turn on IP Forwarding
    # Now call some commands AFTER the link has gone down
    post-down echo "0" > /proc/sys/net/ipv4/ip_forward
                    # Turn off IP Forwarding
    post-down iptables -t nat -F  # Flush the NAT table

# Optional IPv6 on interface
iface usb0 inet6 static
    address 2001:618:429:cafe::5501 # Choose an address in your own block
         # I have ...::5501 at this end and the
         # Zaurus configured as ...::5500
    netmask 128
    mtu 1500

Zaurus-side changes
In Network Settings, for usbd0:
Turn ON "Automatically bring up"
Turn OFF "DHCP"
IP Address: 192.168.129.201 (To match pointopoint address above)
Subnet Mask: 255.255.255.0
Gateway: 192.168.129.200 (To match address on PC)
First DNS: Whatever you like
Second DNS: Whatever you like

Now, you should be able to just plug the Zaurus in. Hotplug will detect the SL-5500, load usbnet.ko, configure the interface and iptables will allow the Zaurus to connect to the internet.

NOTE: We've only used Source NAT so, while the Zaurus can access the internet (pull down ipks etc), it is not accessible to internet computers connecting to it. (That is, you won't be able to ping the Zaurus or connnect to any servers on the Zaurus from any computer other than the one at the end of the USB cable). Also note that you WILL want to tweak the lines in /etc/network/interfaces if you perform other NAT functions on the PC. Suggestions are welcome for more specific (and better) iptables commands.

4
UK / *BUMP*
« on: April 07, 2005, 07:31:38 am »
Hi. I didn't know you COULD monitor forums/subforums until this post. Thanks for the tip

I'm still here. Just bought myself a Symbol Wireless Networker CF Wifi card and am seeing just what sorts of things I can do with it.

5
Angstrom & OpenZaurus / One Way Link?
« on: January 26, 2005, 10:05:47 am »
You could try removing read permissions from the directory:

chmod -r /root/Documents/text

If you keep write permissions then the directory becomes a black hole. Apps can write into it (and change into it, too if you keep the eXecute bits), but can't read or list the directory.

6
Angstrom & OpenZaurus / /home on SD and OpenZaurus 3.5.1
« on: September 09, 2004, 02:25:52 pm »
Does anyone here use an SD card as their home directory under the new OZ3.5.1 or even 3.3.6pre1?

If so, how stable is it?

I'm really pleased with my 3.3.5 with the above configuration, but the one annoying thing is that the SD module doesn't seem to like suspending. This means that every time I want to turn the Z off, I've got to halt it.

If one of the newer versions has a better SD module, then I think I'll be switching over proto  :-)

7
Angstrom & OpenZaurus / SD Problems on OZ
« on: July 09, 2004, 04:50:29 pm »
I've got this problem too.

It seems to be a problem with sdmgr (I managed to SSH in once and top showed it using most of the processor time.)

We can only hope that this'll be fixed in 3.5.1

8
5x00 General discussions / 5500, cant flash but can get to diag menu
« on: July 08, 2004, 06:20:27 am »
Oh, and thanks for the D+P+Reset trick, I didn't know the 5500 had a diagnostics menu. Where did you find out about that?

9
5x00 General discussions / 5500, cant flash but can get to diag menu
« on: July 08, 2004, 06:15:58 am »
/dev/sda1 is, I think, the correct place to have the file system. Under OpenZaurus (I imagine this is the same for other ROMs, though), /etc/fstab has /dev/hda1 as the mount point for /mnt/cf. I presume you've tried fscking the card on your main computer? And that zImage and initrd.bin are in the root directory? Also, check for other simple things like are you running the Z on mains when flashing? When you attempt to flash, to the LEDs come on at all?

10
Angstrom & OpenZaurus / tkcPlayer on OZ 3.3.5?
« on: July 05, 2004, 08:17:29 pm »
I've been looking at theKompany's tkcPlayer and, if it is more stable than XMMS (not a hard feat), it looks like a nice MP3 player.

The only thing is it doesn't say on the site what it's compatible with.

Do I need the Konpany's own tkcROM to run their stuff or can I install it onto OpenZaurus 3.3.5? I'd hate to spend $10 only to find it useless.

TIA.

11
General Discussion / ROM Comparison?
« on: May 24, 2004, 06:03:44 am »
I\'ve noticed several posts asking \"What\'s the best ROM for my Zaurus?\" and, as far as I can see, most of the advice is based purely on personal experience.

Has anyone actually done a comparison between all the various ROMs available (or at least, the more popular ones)? I think it would be nice to see that ROM A comes with built in bluetooth and MP3 player, but doesn\'t yet support a calendar but ROM B supports a full PIM suite, but runs your battery down too quickly.

By listing the pros and cons of each ROM, we\'d be able to make an informed decision one which ROMs best. Does such a thing exist?

-- Darac

Pages: [1]