Thread
:
OK ROM comes
View Single Post
Member:
schraal
at: 05:53 AM 06/10/2009
So a third WebOS device is coming? Saw the name zepfloyd coming by already, but found it in a different file (diskmode.sh), together with the castle (pre) and pixie (eos):
[CODE]#!/bin/sh
# castle
SYSDIR=/sys/devices/platform/musb_hdrc.0/gadget/gadget-lun0
if [ ! -d $SYSDIR ]; then
SYSDIR=/sys/devices/platform/msm_hsusb/gadget/gadget-lun0
# pixie
if [ ! -d $SYSDIR ]; then
# zepfloyd
SYSDIR=/sys/devices/platform/omap_udc/gadget/gadget-lun0
if [ ! -d $SYSDIR ]; then
echo "Error: gadget-lun0 directory not found"
exit 1
fi
fi
fi
...snipped...[/CODE]