summaryrefslogtreecommitdiff
path: root/sbin/fdisk/disk.h
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2007-04-26 22:42:12 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2007-04-26 22:42:12 +0000
commit3fc1bf5f90c5862ead9339c149d7d7bc5610508b (patch)
treee79d154b8b1d5e2511a92821e548781c7615c4e3 /sbin/fdisk/disk.h
parent55ac11543f25dab487e3ffdeff6cc00e34df6c55 (diff)
Eliminate CPU_BIOS from userland and wd(4) by always using the BIOS
geometry in the disklabel when there is a BIOS geometry to provide. This removes the option to set a disklabel to 'BIOS' geometry via the 'g b' command in the editor. Makes reported geometry more consistant and moves MD code to MD land where it should be. Doc help from jmc@, Feedback from millert@, marco@, weingart@, kettenis@. ok deraadt@
Diffstat (limited to 'sbin/fdisk/disk.h')
-rw-r--r--sbin/fdisk/disk.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/fdisk/disk.h b/sbin/fdisk/disk.h
index 361ae532171..6785b583661 100644
--- a/sbin/fdisk/disk.h
+++ b/sbin/fdisk/disk.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disk.h,v 1.8 2004/08/03 09:22:03 otto Exp $ */
+/* $OpenBSD: disk.h,v 1.9 2007/04/26 22:42:11 krw Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -38,7 +38,6 @@ typedef struct _DISK_metrics {
typedef struct _disk_t {
char *name;
- DISK_metrics *bios;
DISK_metrics *label;
DISK_metrics *real;
} disk_t;