Dear all,
I've added the following lines to the end of
/etc/init.d/rcS:
Code:
if [ -f /mnt/onboard/.kobo/run.sh ]; then
/bin/sh /mnt/onboard/.kobo/run.sh &
fi
And in the
.kobo/run.sh script I placed the following lines:
Code:
#!/bin/sh
DEV_OPTS=`ls -l /dev`
echo "$DEV_OPTS" >> /mnt/onboard/.kobo/dev-contents.txt
And from that I obtained the contents of the
/dev filesystem at run-time.
What I found was:
Code:
...
brw-rw---- 1 root disk 179, 0 Oct 27 22:00 mmcblk0
brw-rw---- 1 root disk 179, 1 Feb 22 2012 mmcblk0p1
brw-rw---- 1 root disk 179, 2 Feb 22 2012 mmcblk0p2
brw-rw---- 1 root disk 179, 3 Feb 22 2012 mmcblk0p3
...
This leads me to believe that the Aura One has an SD-card slot (and presumably a microSD card, like the Glo HD). Is this observation right, or could it also be a burned in slot (so we cannot change the memory)?
Thanks for your time.