mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-22 11:17:19 +00:00
26b2d70e8e
so it can be used by other programs. Added all the necessary menus to take the user through the installation of the bootblocks.
29 lines
877 B
C
29 lines
877 B
C
/*
|
|
* Copyright (c) 1994, Paul Richards.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* This software may be used, modified, copied, distributed, and
|
|
* sold, in both source and binary form provided that the above
|
|
* copyright and these terms are retained, verbatim, as the first
|
|
* lines of this file. Under no circumstances is the author
|
|
* responsible for the proper functioning of this software, nor does
|
|
* the author assume any responsibility for damages incurred with
|
|
* its use.
|
|
*/
|
|
|
|
#define BOOT1 "/usr/mdec/sdboot"
|
|
#define BOOT2 "/usr/mdec/bootsd"
|
|
|
|
/* XXX -- calculate these, this is nasty */
|
|
#define DEFFSIZE 1024
|
|
#define DEFFRAG 8
|
|
|
|
int enable_label(int);
|
|
int disable_label(int);
|
|
int write_bootblocks(int, off_t, int);
|
|
int build_bootblocks(struct disklabel *);
|
|
int Mb_to_cylbdry(int, struct disklabel *);
|
|
void default_disklabel(struct disklabel *, int, int);
|
|
int disk_size(int);
|