D
Deleted User
Guest
Well that's the thing we just don't know which files we need, well once the upload is complete, i'll post the links to the two adb pulls I did
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

yup at this point we need to know which libs need to be pulled and where they go. If we can do that we have out extract-files.sh. Is there such thing as including too many libs by any chance?
Update: ok i seem to have all the files needed device folder in place everything is ready to build i will update you guys tomorrow and let you know if it boots up it should because i finally got all thats needed
also, i compared the zte blade and warp sources for the kernel, they are almost exactly the same, except for some debugging lines of code in a handful of files. i used a program to compare the sources.
Not sure where I should post this stuff to since we sorta have 2 CM7 threads going, but here goes...
Got adb working somewhat, but I've discovered that the system partition is not being mounted. (among others) Since adb works for anything that doesn't require any files on the system partition, I was able to do adb pull to get /proc/mounts and /proc/partitions. /proc/partitions looked good...all partitions appear to have been created same as stock, however here's the result of /proc/mounts. Items in red are not being created.
rootfs / rootfs ro,relatime 0 0
tmpfs /dev tmpfs rw,relatime,mode=755 0 0
devpts /dev/pts devpts rw,relatime,mode=600 0 0
proc /proc proc rw,relatime 0 0
sysfs /sys sysfs rw,relatime 0 0
none /acct cgroup rw,relatime,cpuacct 0 0
tmpfs /mnt/asec tmpfs rw,relatime,mode=755,gid=1000 0 0
tmpfs /mnt/obb tmpfs rw,relatime,mode=755,gid=1000 0 0
none /dev/cpuctl cgroup rw,relatime,cpu 0 0
/dev/block/mmcblk0p15 /system ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/block/mmcblk0p18 /data ext4 rw,nosuid,nodev,relatime,barrier=1,data=ordered,noauto_da_alloc 0 0
/dev/block/mmcblk0p7 /persist ext4 rw,nosuid,nodev,relatime,barrier=1,data=ordered 0 0
/dev/block/mmcblk0p17 /cache ext4 rw,nosuid,nodev,relatime,barrier=1,data=ordered 0 0
/dev/block/vold/179:33 /mnt/sdcard vfat rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/block/vold/179:33 /mnt/secure/asec vfat rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0
tmpfs /mnt/sdcard/.android_secure tmpfs ro,relatime,size=0k,mode=000 0 0
So, the parition mounting process is choking on the ext4 partitions. The "on emmc-fs" section of the stock init.rc seems to handle adding ext4 partitions on the stock phone, but I've not been able to find any CM7 init.rc files that have similar entries. Found that the Nexus S also uses ext4 for /system and the official CM7 init.rc for that phone only has the "on fs" section which mounts the yaffs2 partitions. Haven't been able to figure out where the Nexus mounts the ext4 stuff so I'm not really sure what to do as far as the Warp goes. Anyone have any ideas? I may mess around with the "on emmc-fs" settings again, but thought I'd post hoping someone knows something about this.