[OpenELEC] SD Card 2nd partition
#1
Hi,

I'm currently using a USB flash drive as /storage.
Can I format the remaining space on the SD card and use it as partition?
I've tried formating as EXT4 but the partition isn't showing in OE.

TIA
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#2
Don't see why not. The second SD partition should mount automatically, I think - have you tried mounting it manually to make there are no errors? Anything in dmesg?
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
#3
I've tried mounting manually...
can't find /dev/mmcblk0p2 in /etc/fstab

This did it:
Code:
mount /dev/mmcblk0p2 /storage/SD/
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#4
What command are you using, sounds like you're not mounting it correctly.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
#5
I used mount command.
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#6
I'd normally specify the filesystem myself, eg.:
Code:
mount -t ext4 /dev/mmcblk0p2 /storage/SD

Just make sure the partition exists - what do you get with the following:
Code:
ls -la /dev | grep mmcblk
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
#7
Code:
brw-rw----    1 root     disk      179,   0 Jan  1  1970 mmcblk0
brw-rw----    1 root     disk      179,   1 Jan  1  1970 mmcblk0p1
brw-rw----    1 root     disk      179,   2 Jan  1  1970 mmcblk0p2
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply
#8
Added to autostart.sh and now works fine, thanks.

Code:
mount -t ext4 /dev/mmcblk0p2 /storage/SD
 
  • Intel NUC Kit DN2820FYKH ~ Crucial DDR3L SO-DIMM 4GB ~ SanDisk ReadyCache 32GB SSD ~ Microsoft MCE model 1039 RC6 remote
Reply

Logout Mark Read Team Forum Stats Members Help
[OpenELEC] SD Card 2nd partition0