linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* root=PARTUUID for MBR/NT disk signatures?
@ 2012-08-17 22:10 Stephen Warren
  2012-08-20 18:22 ` Tejun Heo
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Warren @ 2012-08-17 22:10 UTC (permalink / raw)
  To: linux-kernel
  Cc: Will Drewry, cross-distro, Jens Axboe, Tejun Heo, Kay Sievers

I was considering extending the kernel command-line option
root=PARTUUID= to also support MBR (NT disk signatures). I was thinking
of a syntax along the lines of:

root=PARTUUID=UUUUUUUU-PP[/PARTNROFF=%d]

... where UUUUUUUU is the hex representation of the NT disk signature,
and PP is the hex representation of the partition number. Like GPT,
/PARTNROFF could be used too if desired.

Related, I was thinking of changing struct partition_meta_info's uuid
field to be a string, so that it could simply be strcmp'd against the
UUID value on the kernel command-line. That way, the type of the UUID is
irrelevant.

Does anyone have any objection to that?

The reason I aim for that syntax rather than say:

root=MBRSIG=UUUUUUUU-PP[/PARTNROFF=%d]

... is to allow boot-loaders (e.g. U-Boot on ARM) to store just the
partition ID in a variable, and prepend all the Linux-specific stuff on
the front, e.g.

# For GPT:
setenv kernel_part_uuid b2f82cda-2535-4779-b467-094a210fbae7
# For MBR:
setenv kernel_part_uuid UUUUUUUU-PP

In fact, those hard-coded statements would probably be replaced with a
run-time command:

part uuid mmc 0:1 kernel_part_uuid

# Then in a common script:
setenv bootargs root=PARTUUID=${kernel_part_uuid}

Otherwise, the value of the uuid variable (or result of the "part uuid"
command) would need to prepend the PARTUUID= or MBRSIG= to the "uuid"
variable's value, and that's probably Linux-specific rather than part of
a generic UUID for the partition.

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

end of thread, other threads:[~2012-08-21 18:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-17 22:10 root=PARTUUID for MBR/NT disk signatures? Stephen Warren
2012-08-20 18:22 ` Tejun Heo
2012-08-20 18:30   ` Stephen Warren
2012-08-21  4:47     ` Will Drewry
2012-08-21  6:38       ` Michael Tokarev
2012-08-21 18:08       ` Stephen Warren
2012-08-21 18:47         ` Will Drewry

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).