* Partitioning in the installer
@ 2025-10-27 4:42 Demi Marie Obenour
2025-10-27 17:05 ` Alyssa Ross
0 siblings, 1 reply; 6+ messages in thread
From: Demi Marie Obenour @ 2025-10-27 4:42 UTC (permalink / raw)
To: Spectrum OS Development; +Cc: Alyssa Ross
[-- Attachment #1.1.1: Type: text/plain, Size: 413 bytes --]
I'm working on updates and am very close to getting something that at
least runs. However, the installer doesn't support more than three
partitions, so I have to create the others manually.
Where would the best place to address this be? I'm not sure if this
needs a patch to the installer's C source code, or if I should fix
it in a script somewhere.
--
Sincerely,
Demi Marie Obenour (she/her/hers)
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 7253 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Partitioning in the installer
2025-10-27 4:42 Partitioning in the installer Demi Marie Obenour
@ 2025-10-27 17:05 ` Alyssa Ross
2025-10-28 0:33 ` Dom (shymega) Rodriguez
0 siblings, 1 reply; 6+ messages in thread
From: Alyssa Ross @ 2025-10-27 17:05 UTC (permalink / raw)
To: Demi Marie Obenour; +Cc: Spectrum OS Development
[-- Attachment #1: Type: text/plain, Size: 464 bytes --]
Demi Marie Obenour <demiobenour@gmail.com> writes:
> I'm working on updates and am very close to getting something that at
> least runs. However, the installer doesn't support more than three
> partitions, so I have to create the others manually.
>
> Where would the best place to address this be? I'm not sure if this
> needs a patch to the installer's C source code, or if I should fix
> it in a script somewhere.
Did you look at how GNOME OS does this yet?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Partitioning in the installer
2025-10-27 17:05 ` Alyssa Ross
@ 2025-10-28 0:33 ` Dom (shymega) Rodriguez
2025-10-28 10:08 ` Alyssa Ross
0 siblings, 1 reply; 6+ messages in thread
From: Dom (shymega) Rodriguez @ 2025-10-28 0:33 UTC (permalink / raw)
To: Alyssa Ross; +Cc: Demi Marie Obenour, Spectrum OS Development
On 27.10.2025 18:05, Alyssa Ross wrote:
>Demi Marie Obenour <demiobenour@gmail.com> writes:
>
>> I'm working on updates and am very close to getting something that at
>> least runs. However, the installer doesn't support more than three
>> partitions, so I have to create the others manually.
>>
>> Where would the best place to address this be? I'm not sure if this
>> needs a patch to the installer's C source code, or if I should fix
>> it in a script somewhere.
>
>Did you look at how GNOME OS does this yet?
I've worked with the build tooling for GNOME OS as part of $dayjob, so
if any help is needed understanding the structure, feel free to ping me
on Matrix :-)
It's [GNOME OS] based on freedesktop-sdk with Buildstream for
integration. `genimage` is probably what you're after?
Best wishes,
--
Dom Rodriguez
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Partitioning in the installer
2025-10-28 0:33 ` Dom (shymega) Rodriguez
@ 2025-10-28 10:08 ` Alyssa Ross
2025-11-01 0:34 ` Dom (shymega) Rodriguez
0 siblings, 1 reply; 6+ messages in thread
From: Alyssa Ross @ 2025-10-28 10:08 UTC (permalink / raw)
To: Dom (shymega) Rodriguez; +Cc: Demi Marie Obenour, Spectrum OS Development
[-- Attachment #1: Type: text/plain, Size: 1239 bytes --]
"Dom (shymega) Rodriguez" <shymega@shymega.org.uk> writes:
> On 27.10.2025 18:05, Alyssa Ross wrote:
>>Demi Marie Obenour <demiobenour@gmail.com> writes:
>>
>>> I'm working on updates and am very close to getting something that at
>>> least runs. However, the installer doesn't support more than three
>>> partitions, so I have to create the others manually.
>>>
>>> Where would the best place to address this be? I'm not sure if this
>>> needs a patch to the installer's C source code, or if I should fix
>>> it in a script somewhere.
>>
>>Did you look at how GNOME OS does this yet?
>
> I've worked with the build tooling for GNOME OS as part of $dayjob, so
> if any help is needed understanding the structure, feel free to ping me
> on Matrix :-)
>
> It's [GNOME OS] based on freedesktop-sdk with Buildstream for
> integration. `genimage` is probably what you're after?
I think what we're specifically interested in is actually the GNOME OS
installer, rather than the image generator.
Do they have an installer that copies a disk image / partition images to
the target disk? Does the installer image also provide a live GNOME OS
environment? Do they have A/B updates? How do those partitions get
created in the install process?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Partitioning in the installer
2025-10-28 10:08 ` Alyssa Ross
@ 2025-11-01 0:34 ` Dom (shymega) Rodriguez
2025-11-01 21:25 ` Alyssa Ross
0 siblings, 1 reply; 6+ messages in thread
From: Dom (shymega) Rodriguez @ 2025-11-01 0:34 UTC (permalink / raw)
To: Alyssa Ross; +Cc: Demi Marie Obenour, Spectrum OS Development
On 28.10.2025 11:08, Alyssa Ross wrote:
>"Dom (shymega) Rodriguez" <shymega@shymega.org.uk> writes:
>
>> On 27.10.2025 18:05, Alyssa Ross wrote:
>>>Demi Marie Obenour <demiobenour@gmail.com> writes:
>>>
>>>> I'm working on updates and am very close to getting something that at
>>>> least runs. However, the installer doesn't support more than three
>>>> partitions, so I have to create the others manually.
>>>>
>>>> Where would the best place to address this be? I'm not sure if this
>>>> needs a patch to the installer's C source code, or if I should fix
>>>> it in a script somewhere.
>>>
>>>Did you look at how GNOME OS does this yet?
>>
>> I've worked with the build tooling for GNOME OS as part of $dayjob, so
>> if any help is needed understanding the structure, feel free to ping me
>> on Matrix :-)
>>
>> It's [GNOME OS] based on freedesktop-sdk with Buildstream for
>> integration. `genimage` is probably what you're after?
>
>I think what we're specifically interested in is actually the GNOME OS
>installer, rather than the image generator.
>
>Do they have an installer that copies a disk image / partition images to
>the target disk? Does the installer image also provide a live GNOME OS
>environment? Do they have A/B updates? How do those partitions get
>created in the install process?
Probably a question to ask in the GNOME OS Matrix channel, if there is
one.
Does Spectrum support A/B updates? Perhaps ChromeOS is worth a look at
for inspiration of implementation detail.
Best wishes,
--
Dom Rodriguez
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Partitioning in the installer
2025-11-01 0:34 ` Dom (shymega) Rodriguez
@ 2025-11-01 21:25 ` Alyssa Ross
0 siblings, 0 replies; 6+ messages in thread
From: Alyssa Ross @ 2025-11-01 21:25 UTC (permalink / raw)
To: Dom (shymega) Rodriguez; +Cc: Demi Marie Obenour, Spectrum OS Development
[-- Attachment #1: Type: text/plain, Size: 1886 bytes --]
"Dom (shymega) Rodriguez" <shymega@shymega.org.uk> writes:
> On 28.10.2025 11:08, Alyssa Ross wrote:
>>"Dom (shymega) Rodriguez" <shymega@shymega.org.uk> writes:
>>
>>> On 27.10.2025 18:05, Alyssa Ross wrote:
>>>>Demi Marie Obenour <demiobenour@gmail.com> writes:
>>>>
>>>>> I'm working on updates and am very close to getting something that at
>>>>> least runs. However, the installer doesn't support more than three
>>>>> partitions, so I have to create the others manually.
>>>>>
>>>>> Where would the best place to address this be? I'm not sure if this
>>>>> needs a patch to the installer's C source code, or if I should fix
>>>>> it in a script somewhere.
>>>>
>>>>Did you look at how GNOME OS does this yet?
>>>
>>> I've worked with the build tooling for GNOME OS as part of $dayjob, so
>>> if any help is needed understanding the structure, feel free to ping me
>>> on Matrix :-)
>>>
>>> It's [GNOME OS] based on freedesktop-sdk with Buildstream for
>>> integration. `genimage` is probably what you're after?
>>
>>I think what we're specifically interested in is actually the GNOME OS
>>installer, rather than the image generator.
>>
>>Do they have an installer that copies a disk image / partition images to
>>the target disk? Does the installer image also provide a live GNOME OS
>>environment? Do they have A/B updates? How do those partitions get
>>created in the install process?
>
> Probably a question to ask in the GNOME OS Matrix channel, if there is
> one.
We got our answer. :)
https://spectrum-os.org/lists/archives/spectrum-devel/87wm4dlkhz.fsf@alyssa.is
> Does Spectrum support A/B updates? Perhaps ChromeOS is worth a look at
> for inspiration of implementation detail.
That's the idea. GNOME OS is the more obvious place to look because
we'll be using the same updater implementation (systemd-sysupdate).
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-11-01 21:25 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-27 4:42 Partitioning in the installer Demi Marie Obenour
2025-10-27 17:05 ` Alyssa Ross
2025-10-28 0:33 ` Dom (shymega) Rodriguez
2025-10-28 10:08 ` Alyssa Ross
2025-11-01 0:34 ` Dom (shymega) Rodriguez
2025-11-01 21:25 ` Alyssa Ross
Code repositories for project(s) associated with this public inbox
https://spectrum-os.org/git/crosvm
https://spectrum-os.org/git/doc
https://spectrum-os.org/git/mktuntap
https://spectrum-os.org/git/nixpkgs
https://spectrum-os.org/git/spectrum
https://spectrum-os.org/git/ucspi-vsock
https://spectrum-os.org/git/www
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).