1
Zaurus - pdaXrom / Pdaxrom For C3000 Beta2
« on: January 12, 2006, 05:08:46 pm »
/usr/bin/usbfunction.py line 21:
/usb/bin/looknfeel.py lines from 1014 to 1018:
/etc/fstab line 1:
That's all, folks!
Code: [Select]
STORAGE_OPTS = ["/dec/mmdca1", "/dev/hda1"]
I guess what the second item of array have wrong value. The right string is "/dec/hdc1" (for CF)./usb/bin/looknfeel.py lines from 1014 to 1018:
Code: [Select]
if self.PANEL_LEFT_MARGIN != "" and int(self.PANEL_LEFT_MARGIN) >= 1 and int(self.PANEL_LEFT_MARGIN) <= 600:
write_str = write_str + " --margin-start \"" + str(self.PANEL_LEFT_MARGIN)+ "\""
if self.PANEL_RIGHT_MARGIN != "" and int(self.PANEL_RIGHT_MARGIN) >= 1 and int(self.PANEL_RIGHT_MARGIN) <= 600:
write_str = write_str + " --margin-end \"" + str(self.PANEL_RIGHT_MARGIN)+ "\""
If you try to ask the matchbox-panel for help ("matchbox-panel --help") you can see what it havn't "--margin-start" or "--margin-end" options. So when you set panel margins in "Look-n-Feel" dialog you will be confused with startx script result. /etc/fstab line 1:
Code: [Select]
/dev/hda1 /mnt/cf auto noauto,owner 0 0
It's the same problem as in 'usbfunction.py'. /dev/hda1 is not a compact flash device. I have replaced "hda1" to "hdc1".That's all, folks!