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 s
The following reply was made to PR kern/141235; it has been noted by GNATS.
From: dieter...@engineer.com
To: bug-follo...@freebsd.org, j...@freebsd.org
Cc: free...@sopwith.solgatos.com, freebsd-bugs@FreeBSD.org
Subject: Re: kern/141235: 8.0 no longer provides /dev entries for all disk
slices
[re
>> and then I added GEOM_MBR and GEOM_BSD as suggested. So I don't
>> know where GEOM_PART_MBR comes from or how to get rid of it.
>
> GEOM_PART_* are in DEFAULTS (sys/amd64/conf/DEFAULTS on amd64).
Ah ha!
opt_geom.h now contains:
#define GEOM_BSD 1
#define GEOM_LABEL 1
#define GEOM_PART_GPT 1
The following reply was made to PR kern/141235; it has been noted by GNATS.
From: dieter...@engineer.com
To: bug-follo...@freebsd.org, j...@freebsd.org
Cc: free...@sopwith.solgatos.com, freebsd-bugs@FreeBSD.org
Subject: Re: kern/141235: 8.0 no longer provides /dev entries for all disk
slices
[re
> You should remove GEOM_PART_* entries. I think that the duplicates you
> saw are because you had geom_part still enabled.
I thought about that. Having both GEOM_PART_MBR and GEOM_MBR
seemed suspicious, but GEOM_PART_MBR isn't from the config file:
grep -i geom GENERIC
options GEOM_PART
The following reply was made to PR kern/141235; it has been noted by GNATS.
From: dieter...@engineer.com
To: bug-follo...@freebsd.org, j...@freebsd.org
Cc: free...@sopwith.solgatos.com, freebsd-bugs@FreeBSD.org
Subject: Re: kern/141235: 8.0 no longer provides /dev entries for all disk
slices
[re
This is probably related to GEOM_PART_*. Could you confirm that by
replacing
GEOM_PART_* options in your kernel config with GEOM_MBR and GEOM_BSD?
opt_geom.h previously contained:
#define GEOM_LABEL 1
#define GEOM_PART_EBR 1
#define GEOM_PART_GPT 1
#define GEOM_PART_MBR 1
#define GEOM_PART_EB