WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: piCore15.0 Beta  (Read 9957 times)

Offline ovacikar

  • Newbie
  • *
  • Posts: 46
Re: piCore15.0 Beta
« Reply #105 on: Today at 09:17:40 AM »
The 15 beta 1 comes with 80MB p1 partition. I have a second RPi with the output below.
What is wrong with the 80MB ? Increasing p1 unnecessarily leaves less space for the p2. Especially on a small card like 256 / 512 MB.

Code: [Select]
Linux picore 6.6.28-piCore #4 Thu Apr 18 22:44:37 EDT 2024 armv6l GNU/Linux
Device       Boot StartCHS    EndCHS        StartLBA     EndLBA    Sectors  Size Id Type
/dev/mmcblk0p1    128,0,1     1023,3,16         8192     172031     163840 80.0M  c Win95 FAT32 (LBA)

« Last Edit: Today at 09:25:54 AM by ovacikar »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11523
Re: piCore15.0 Beta
« Reply #106 on: Today at 12:01:22 PM »
Hi Paul_123
... I don't want to release an image with only a 64MB partition, but what is the right number?
I guess that depends on how much stuff do you expect users
to be adding to the boot partition.

I have seen references to articles like this:
https://www.novaspirit.com/2018/01/09/tiny-core-raspberry-pi-zero-w-install/
where they recommend deleting an unneeded kernel architecture to make
room to download extensions needed for setting up wifi. They probably picked
that partition because its FAT32 so Windows can download the files if necessary.

In that article they download everything including .info, .tree, .list, and .zsync.
For TC9 ARMv6 that amounts to 5.8M.

So in my uninformed opinion, I would think 10M to 15M above the required
space for the boot files should be adequate.

Offline Paul_123

  • Administrator
  • Hero Member
  • *****
  • Posts: 1231
Re: piCore15.0 Beta
« Reply #107 on: Today at 12:04:52 PM »
The reason I went to 128MB is due to being able to run multiple kernel versions.  As well as leaving space for firmware upgrades on the pi4's. For those of us who do in place upgrades.   But I can put back to ~80MB


Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14757
Re: piCore15.0 Beta
« Reply #108 on: Today at 12:29:14 PM »
‘sounds interesting, how do you do the firmware update on a piCore RPi4?

Offline patrikg

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 700
Re: piCore15.0 Beta
« Reply #109 on: Today at 02:03:04 PM »
You can also save some space by not start at sector 8192, I think you can start at 1.
Raspberry pi doesn't need and boot sector.

Something like this:
Code: [Select]
LANG=C parted --script -a none sdimage.img unit s mktable msdos mkpart primary fat32 1 80Mb mkpart primary ext4 80Mb 100%