. common/include/arch/i386 is not actually an imported sys/arch/i386/include but leftover Minix files; remove and move to include/ . move include/ufs to sys/ufs, where it came from, now that we have a sys/ hierarchy . move mdocml/ to external/bsd/, now we have that . single sys/arch/i386/stand/ import for boot stuff
21 lines
458 B
C
21 lines
458 B
C
/* PC (and AT) BIOS structure to hold disk parameters. Under Minix, it is
|
|
* used mainly for formatting.
|
|
*/
|
|
|
|
#ifndef _DISKPARM_H
|
|
#define _DISKPARM_H
|
|
struct disk_parameter_s {
|
|
char spec1;
|
|
char spec2;
|
|
char motor_turnoff_sec;
|
|
char sector_size_code;
|
|
char sectors_per_cylinder;
|
|
char gap_length;
|
|
char dtl;
|
|
char gap_length_for_format;
|
|
char fill_byte_for_format;
|
|
char head_settle_msec;
|
|
char motor_start_eigth_sec;
|
|
};
|
|
#endif /* _DISKPARM_H */
|