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 - Holo

Pages: [1]
1
Zaurus - pdaXrom / Pdaxrom For C3000 Beta2
« on: January 12, 2006, 05:08:46 pm »
/usr/bin/usbfunction.py line 21:
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  0It'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!  

Pages: [1]