kern/141235: 8.0 no longer provides /dev entries for all disk
slices [regression]
dieterbsd at engineer.com
dieterbsd at engineer.com
Thu Jun 3 18:40:03 UTC 2010
The following reply was made to PR kern/141235; it has been noted by GNATS.
From: dieterbsd at engineer.com
To: bug-followup at freebsd.org, bu7cher at yandex.ru
Cc: freebsd at sopwith.solgatos.com, freebsd-bugs at FreeBSD.org
Subject: Re: kern/141235: 8.0 no longer provides /dev entries for all disk slices
[regression]
Date: Thu, 03 Jun 2010 14:30:26 -0400
> Did you try to remove both deprecated GEOM_BSD and GEOM_MBR
> from your config?
> Now in 8.0+ you should use GEOM_PART_MBR, GEOM_PART_EBR and
> GEOM_PART_BSD instead. And they all are in DEFAULTS config by
> default.
>
> Your MBR partitions should be served with GEOM_PART_MBR scheme.
> An extended partitions should be served with GEOM_PART_EBR scheme.
> A BSD slices should be served with GEOM_PART_BSD scheme.
I started with the default GENERIC 8.0-release kernel and it is broken.
It does not provide /dev entries for MBR extended partitions.
Changing the GEOM_* options to be
#define GEOM_BSD 1
#define GEOM_LABEL 1
#define GEOM_PART_GPT 1
#define GEOM_MBR 1
(which turns out to be the same as they were in 7.1) makes everything=20
work.
More information about the freebsd-geom
mailing list