November 2, 2016 at 9:42 AM #1 When booting LE from SD card: how to access the filesystems in the NAND (where Android resides) from LE?
November 2, 2016 at 10:11 AM #2 Code mkdir -p /tmp/system mount /dev/system /tmp/system system partition content will be available in /tmp/system.
November 2, 2016 at 11:15 AM #3 @CGarces's answer is correct, but if you need access to the data partition where Android stores user data, you need to replace "system" with "data": Code mkdir -p /tmp/data mount /dev/data /tmp/data