| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ make Open_Disk sense the sector size by trying 512, 1024 and 2048
in this order. This makes the kernel note that
dscheck(cd1): bio_bcount 512 is not on a sector boundary (ssize 2048)
dscheck(cd1): bio_bcount 1024 is not on a sector boundary (ssize 2048)
if 2048 is the sector size. If this worries anyone: the message is from
/usr/src/sys/kern/subr_diskslice.c and shutups are to be placed there.
+ Have read_block and write_block use an additional parameter, the
sector size.
+ replace all barfout calls with return NULL, 0, __LINE__, etc.
Note that this does NOT emit diagnostics. More often than not,
you don't want library functions to scribble on stderr -- it may
not even be available. The right thing is to propagate the error
condition to upper management. The app should take care of errors.
+ use d1->sector_size instead of 512 in various places. I've left many
places untouched, especially those writing MBRs. I simply added
another arg hardcoded as 512. This is because I would not know what
I'm doing... I felt this approach would be reasonably backward
compatible and not introduce any new bugs in critical software.
Famous last words. Messing with MBRs might soon put me in the same
screwup meister category as, uh, never mind. :-)
+ bump the max no of disks from 20 to 32 (due to PR 24503).
PR: 8434 / 8436 / 24503
Submitted by: Jens Schweikhardt <schweikh@schweikhardt.net>
|
|
|
|
|
| |
It's OK, the Project and afford them now -- they aren't as expensive as
they used to be.
|
| |
|
|
|
|
|
|
| |
Also, looking to the future, don't assume all the world is an i386 and all
its disk layout brain damage will be repeated by other platforms. So all
the diking out if we are an Alpha, becomes adding in if we are an i386.
|
|
|
|
|
| |
(of course it's pretty stupid to call it, as printf doesn't work w/in
sysinstall, and sysinstall is the only consumer of libdisk)
|
| |
|
|
|
|
|
| |
(of course it's pretty stupid to call it, as printf doesn't work w/in
sysinstall, and sysinstall is the only consumer of libdisk)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
`err()'). libdisk does! and additionally libdisk gets confused on Alpha
disks with foreign disklabels, throws up its hands and exits. This is
the cause of the "going no where without my init" install bug on the Alpha.
So now on the Alpha, rather than call err(), we print the error string and
continue processing.
Submitted by: jkh
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
present, this is limited to turning on the packet option if any of
disk slices begin above cylinder 1023. The effect of this change
should therefore be to automatically enable LBA support, as needed,
when installing FreeBSD.
Something-of-the-kind-requested-by: peter
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Change its type to u_int_16_t.
|
| |
|
|
|
|
| |
- Cosmetic changes.
|
|
|
|
|
|
| |
- Recognize slice type 0x24 as FAT (only PC-98).
Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
|
|
|
|
| |
disk_create() function.
|
|
|
|
|
|
| |
with fdisk, ensure that they are a multiple of the sector size in length.
- Axe all the 1024 cylinder checks as they are no longer relevant with the
fixed bootstrap.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
available. If not, it falls back to the existing hack and slash method.
A positive side effect is that non-root users may now use Disk_Names(),
for non-dangerous libh/disk.tcl testing.
Reviewed by: phk
|
| |
|
|
|
|
|
| |
This should fix sysinstall and other tools that don't expect the 'r' devices
to exist anymore (and thus don't create them).
|
|
|
|
|
| |
depending on libdisk to detect a list of actually-there disk devices
were providing duplicate entries (eg. sysinstall).
|
| |
|
| |
|
|
|
|
|
|
| |
disks.
Submitted by: bde
|
|
|
|
| |
Reported by: Alexander Leidinger <Alexander@leidinger.net>
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Submitted by: david.w.james@bt.com
|
| |
|
|
|
|
| |
spewing out will only alarm people.
|
|
|
|
| |
Reviewed by: marcel, and make world
|
|
|
|
|
|
|
|
| |
lobotomized environment, say booted from a floppy with no /etc full
of password and group files, give sensible fallbacks for roots uid
and operators gid.
This might fix sysinstall.
|
|
|
|
|
|
|
|
| |
Teach about the afd driver.
Teach new char dev for ad driver.
Make ownerships correct.
Submitted by: jhb
|
| |
|
| |
|
|
|
|
| |
to install directly to arrays managed by these controllers now.
|
|
|
|
| |
mention library name in header (.Nd field) - it allows to use "man -k libdisk"
|
| |
|