unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#35136: Git master installer disk-image has GPT PMBR size mismatch
@ 2019-04-04  5:33 pelzflorian (Florian Pelz)
  2019-04-04  8:51 ` pelzflorian (Florian Pelz)
  0 siblings, 1 reply; 6+ messages in thread
From: pelzflorian (Florian Pelz) @ 2019-04-04  5:33 UTC (permalink / raw)
  To: 35136

Since commit 45c0d1d790f01ebc020fc4b2787a6abcdaa3f383 all install ISOs
created with

guix system disk-image --file-system-type=iso9660 gnu/system/install.scm

cannot boot for me, see

https://lists.gnu.org/archive/html/guix-devel/2019-04/msg00061.html


fdisk reports this:

florian@florianmacbook ~ [env]$ fdisk g1.iso # commit 391e0d65d7129d53c025963d2758724e75626eb4

Welcome to fdisk (util-linux 2.32.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): q

florian@florianmacbook ~ [env]$ fdisk g2.iso # commit 45c0d1d790f01ebc020fc4b2787a6abcdaa3f383

Welcome to fdisk (util-linux 2.32.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

GPT PMBR size mismatch (3230583 != 3200895) will be corrected by write.

Command (m for help): q

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35136: Git master installer disk-image has GPT PMBR size mismatch
  2019-04-04  5:33 bug#35136: Git master installer disk-image has GPT PMBR size mismatch pelzflorian (Florian Pelz)
@ 2019-04-04  8:51 ` pelzflorian (Florian Pelz)
  2019-04-05  5:57   ` pelzflorian (Florian Pelz)
  0 siblings, 1 reply; 6+ messages in thread
From: pelzflorian (Florian Pelz) @ 2019-04-04  8:51 UTC (permalink / raw)
  To: 35136

On Thu, Apr 04, 2019 at 07:33:17AM +0200, pelzflorian (Florian Pelz) wrote:
> guix system disk-image --file-system-type=iso9660 gnu/system/install.scm
> 

This only happens when specifying --file-system-type=iso9660.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35136: Git master installer disk-image has GPT PMBR size mismatch
  2019-04-04  8:51 ` pelzflorian (Florian Pelz)
@ 2019-04-05  5:57   ` pelzflorian (Florian Pelz)
  2019-04-06 17:29     ` pelzflorian (Florian Pelz)
  0 siblings, 1 reply; 6+ messages in thread
From: pelzflorian (Florian Pelz) @ 2019-04-05  5:57 UTC (permalink / raw)
  To: 35136

I would like to log the commandline with which parted is executed in
initialize-partition-table in gnu/build/vm.scm, but I do not know
where all the output is going.  Apparently it is nowhere in the logs.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35136: Git master installer disk-image has GPT PMBR size mismatch
  2019-04-05  5:57   ` pelzflorian (Florian Pelz)
@ 2019-04-06 17:29     ` pelzflorian (Florian Pelz)
  2019-04-07  6:33       ` pelzflorian (Florian Pelz)
  0 siblings, 1 reply; 6+ messages in thread
From: pelzflorian (Florian Pelz) @ 2019-04-06 17:29 UTC (permalink / raw)
  To: 35136

On Fri, Apr 05, 2019 at 07:57:06AM +0200, pelzflorian (Florian Pelz) wrote:
> I would like to log the commandline with which parted is executed in
> initialize-partition-table in gnu/build/vm.scm, but I do not know
> where all the output is going.  Apparently it is nowhere in the logs.
> 
> 
> 

I was wrong; grub-mkrescue in gnu/build/vm.scm creates the ISO9660
partition table, not parted.  It appears I can get at its commandline
by reconfiguring with a modified grub package that raises an error
containing the commandline.  I will try later.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35136: Git master installer disk-image has GPT PMBR size mismatch
  2019-04-06 17:29     ` pelzflorian (Florian Pelz)
@ 2019-04-07  6:33       ` pelzflorian (Florian Pelz)
  2019-04-13 13:49         ` pelzflorian (Florian Pelz)
  0 siblings, 1 reply; 6+ messages in thread
From: pelzflorian (Florian Pelz) @ 2019-04-07  6:33 UTC (permalink / raw)
  To: 35136

This seems to be a duplicate of https://issues.guix.info/issue/33639
, I think, but it happens to me on x86_64.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35136: Git master installer disk-image has GPT PMBR size mismatch
  2019-04-07  6:33       ` pelzflorian (Florian Pelz)
@ 2019-04-13 13:49         ` pelzflorian (Florian Pelz)
  0 siblings, 0 replies; 6+ messages in thread
From: pelzflorian (Florian Pelz) @ 2019-04-13 13:49 UTC (permalink / raw)
  To: 35136

On Sun, Apr 07, 2019 at 08:33:23AM +0200, pelzflorian (Florian Pelz) wrote:
> This seems to be a duplicate of https://issues.guix.info/issue/33639
> , I think, but it happens to me on x86_64.
> 

This bug is fixed with ludo’s patch for
https://issues.guix.info/issue/33639

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-13 13:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-04  5:33 bug#35136: Git master installer disk-image has GPT PMBR size mismatch pelzflorian (Florian Pelz)
2019-04-04  8:51 ` pelzflorian (Florian Pelz)
2019-04-05  5:57   ` pelzflorian (Florian Pelz)
2019-04-06 17:29     ` pelzflorian (Florian Pelz)
2019-04-07  6:33       ` pelzflorian (Florian Pelz)
2019-04-13 13:49         ` pelzflorian (Florian Pelz)

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).