OpenELEC Testbuilds for RaspberryPi Part 3 (Kodi 14.0)
(2014-07-17, 13:42)doveman2 Wrote:
(2014-07-17, 09:43)da-anda Wrote: @Milhouse - yes, the installer script is creating such a small partition. Mine is also too small. Already had to increase it once and thought 200 MB would be sufficient - silly me Smile

Is there an easy way to expand the partition? Could the installer be changed to create a bigger partition in future to avoid this issue?
Gparted is supposed to work, if you have a different linux system in which you can chuck you SD card. Do make a backup first just in case!

To have the installer (on linux) take care of it, change the following lines in create_sdcard:
Code:
parted -s "$DISK" unit cyl mkpart primary fat32 -- 0 16
# align the partition on 4mb boundary, starting at 132mb (132 % 4 == 0), which
# is right after the first partition
  parted -s "$DISK" mkpart primary ext2 -- 132MiB -2cyl

To the following to double the partition size (from 132 to 264MB):

Code:
parted -s "$DISK" unit cyl mkpart primary fat32 -- 0 32
# align the partition on 4mb boundary, starting at 264mb (264 % 4 == 0), which
# is right after the first partition
  parted -s "$DISK" mkpart primary ext2 -- 264MiB -2cyl

Using the installer will obviously wipe your complete SD card.


Messages In This Thread
Re: RE: - by Mafarricos - 2014-06-04, 20:21
Live tv issues again - by pootler - 2014-06-04, 23:29
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by Forage - 2014-07-17, 17:29
RE: OpenELEC Testbuilds for RaspberryPi Part 3, - by removed151214 - 2014-08-04, 23:38
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-08-19, 00:11
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-08-21, 20:42
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-09-22, 22:20
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-09-22, 22:34
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-09-22, 22:44
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-09-23, 01:12
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-09-23, 23:24
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-09-25, 01:38
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-10-01, 18:12
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-10-01, 18:26
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-10-05, 01:07
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-10-11, 03:48
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-10-11, 04:06
RE: OpenELEC Testbuilds for RaspberryPi Part 3 - by removed151214 - 2014-10-11, 11:29
Logout Mark Read Team Forum Stats Members Help
OpenELEC Testbuilds for RaspberryPi Part 3 (Kodi 14.0)8