diff options
author | jhb <jhb@FreeBSD.org> | 2000-07-12 18:08:27 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-07-12 18:08:27 +0000 |
commit | 2913657a9794149a1d43420d2ee7df734392da82 (patch) | |
tree | 7ef05cf699ae002d65dd1cc4b40589130b3b574c /usr.sbin/sysinstall/label.c | |
parent | b4c0d6aa68030b0d552c9dc5ca7eb8f0c83657ee (diff) | |
download | FreeBSD-src-2913657a9794149a1d43420d2ee7df734392da82.zip FreeBSD-src-2913657a9794149a1d43420d2ee7df734392da82.tar.gz |
- Support MBR boot loaders that are larger than one sector size.
- Axe the 1024 cylinder checks as they are no longer relevant.
Diffstat (limited to 'usr.sbin/sysinstall/label.c')
-rw-r--r-- | usr.sbin/sysinstall/label.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/usr.sbin/sysinstall/label.c b/usr.sbin/sysinstall/label.c index 460f194..db5061a 100644 --- a/usr.sbin/sysinstall/label.c +++ b/usr.sbin/sysinstall/label.c @@ -969,15 +969,6 @@ diskLabel(Device *dev) clear_wins(); break; } - if ((flags & CHUNK_IS_ROOT) && (tmp->flags & CHUNK_PAST_1024)) { - msgConfirm("This region cannot be used for your root partition as it starts\n" - "or extends past the 1024'th cylinder mark and is thus a\n" - "poor location to boot from. Please choose another\n" - "location (or smaller size) for your root partition and try again!"); - Delete_Chunk(label_chunk_info[here].c->disk, tmp); - clear_wins(); - break; - } if (type != PART_SWAP) { /* This is needed to tell the newfs -u about the size */ tmp->private_data = new_part(p->mountpoint, p->newfs, tmp->size); |