You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 27, 2023. It is now read-only.
Not a bug with NOOBS itself per-se, but a problem with one of the data-files it's using.
In os/RaspBMC/partitions.json (and also in http://downloads.raspberrypi.org/raspbmc/partitions.json ) you have "want_maximised": "N", and "want_maximised": "Y", instead of the "want_maximised": false, and "want_maximised": true, used by all the other partitions.json files.
NOOBS then (correctly) interprets both non-empty strings as boolean true values, and as a result both the RaspBMC partitions get maximised, rather than only the root partition.
I've just installed OpenELEC, RaspBMC and Raspbian onto my 16GB SDHC card using the "full" NOOBS v1.3, and ended up with this partition table:
i.e. RaspBMC has been given a 2.5GB boot partition!
The fix is to simply edit RaspBMC's partitions.json file to correctly use boolean JSON values rather than strings. (easy to do for the online version!)
And maybe you could consider validating the JSON files against a well-defined schema, as I once suggested to you in an email? ;-)
The text was updated successfully, but these errors were encountered:
I manually edited os/RaspBMC/partitions.json on my SD card to correct it as described above, then re-installed OpenELEC, RaspBMC and Raspbian again, and now my partition table changes to:
i.e. RaspBMC's boot partition is now just 80MB-ish as expected, and consequently the rootfs partitions mmcblk0p6, mmcblk0p8 and mmcblk0p10 get more space allocated to them.
It's probably worth mentioning that the only reason I found this bug was because I also noticed the "big pause without the progress bar updating" during OS-install, and decided to investigate what was going on... ;-)
Not a bug with NOOBS itself per-se, but a problem with one of the data-files it's using.
In
os/RaspBMC/partitions.json
(and also in http://downloads.raspberrypi.org/raspbmc/partitions.json ) you have"want_maximised": "N",
and"want_maximised": "Y",
instead of the"want_maximised": false,
and"want_maximised": true,
used by all the otherpartitions.json
files.NOOBS then (correctly) interprets both non-empty strings as boolean true values, and as a result both the RaspBMC partitions get maximised, rather than only the root partition.
I've just installed OpenELEC, RaspBMC and Raspbian onto my 16GB SDHC card using the "full" NOOBS v1.3, and ended up with this partition table:
i.e. RaspBMC has been given a 2.5GB boot partition!
The fix is to simply edit RaspBMC's
partitions.json
file to correctly use boolean JSON values rather than strings. (easy to do for the online version!)And maybe you could consider validating the JSON files against a well-defined schema, as I once suggested to you in an email? ;-)
The text was updated successfully, but these errors were encountered: