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.
# mount point<->fstype device <-->[device2]
/cache yaffs2 cache
/data yaffs2 userdata
/ramdisk mtd ramdisk
/kernel mtd kernel
/sdcard vfat /dev/block/mmcblk0p1 /dev/block/mmcblk0
/system yaffs2 system
/sd-ext ext4 /dev/block/mmcblk0p2
if (0 != (ret = nandroid_backup_partition(backup_path, "/ramdisk")))
return ret;
if (0 != (ret = nandroid_backup_partition(backup_path, "/kernel")))
return ret;
if (restore_boot && 0 != (ret = nandroid_restore_partition(backup_path, "/ramdisk")))
return ret;
if (restore_boot && 0 != (ret = nandroid_restore_partition(backup_path, "/kernel")))
return ret;
This build have 2 known bugs. Kernel don't support ext4 and don't work usb mount. I will fix it later.