2004-06-12 23:18:24 +04:00
|
|
|
/* $NetBSD: defs.h,v 1.116 2004/06/12 19:18:24 dsl Exp $ */
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 1997 Piermont Information Systems Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Written by Philip A. Nelson for Piermont Information Systems Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1999-06-20 10:08:13 +04:00
|
|
|
* This product includes software developed for the NetBSD Project by
|
1997-09-27 03:02:53 +04:00
|
|
|
* Piermont Information Systems Inc.
|
|
|
|
* 4. The name of Piermont Information Systems Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
|
|
* THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-05-19 00:40:09 +04:00
|
|
|
#ifndef _DEFS_H_
|
|
|
|
#define _DEFS_H_
|
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* defs.h -- definitions for use in the sysinst program. */
|
|
|
|
|
1997-10-15 08:35:17 +04:00
|
|
|
/* System includes needed for this. */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/disklabel.h>
|
2003-01-13 00:49:50 +03:00
|
|
|
extern const char * const fstypenames[];
|
2003-11-30 17:36:43 +03:00
|
|
|
extern const char * const mountnames[];
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
deconst(const void *p)
|
|
|
|
{
|
|
|
|
return (char *)0 + ((const char *)p - (const char *)0);
|
|
|
|
}
|
1997-10-15 08:35:17 +04:00
|
|
|
|
1999-07-05 01:32:48 +04:00
|
|
|
#include "msg_defs.h"
|
|
|
|
|
2003-11-30 17:36:43 +03:00
|
|
|
#define min(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define max(a,b) ((a) > (b) ? (a) : (b))
|
2000-01-13 21:52:21 +03:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* constants */
|
2003-06-07 01:37:13 +04:00
|
|
|
#define MEG (1024 * 1024)
|
1997-09-27 03:02:53 +04:00
|
|
|
#define STRSIZE 255
|
1997-10-07 08:01:29 +04:00
|
|
|
#define SSTRSIZE 30
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* For run.c: collect() */
|
2003-11-30 17:36:43 +03:00
|
|
|
#define T_FILE 0
|
|
|
|
#define T_OUTPUT 1
|
1997-09-27 03:02:53 +04:00
|
|
|
|
2000-10-12 03:47:55 +04:00
|
|
|
/* run_prog flags */
|
2003-10-20 00:17:31 +04:00
|
|
|
#define RUN_DISPLAY 0x0001 /* Display program output */
|
2000-10-12 03:47:55 +04:00
|
|
|
#define RUN_FATAL 0x0002 /* errors are fatal */
|
|
|
|
#define RUN_CHROOT 0x0004 /* chroot to target disk */
|
|
|
|
#define RUN_FULLSCREEN 0x0008 /* fullscreen (use with RUN_DISPLAY) */
|
2003-10-20 00:17:31 +04:00
|
|
|
#define RUN_SILENT 0x0010 /* Do not show output */
|
2003-11-30 17:36:43 +03:00
|
|
|
#define RUN_SILENT_ERR 0x0020 /* Remain silent even if cmd fails */
|
2003-10-20 00:17:31 +04:00
|
|
|
#define RUN_ERROR_OK 0x0040 /* Don't wait for error confirmation */
|
|
|
|
#define RUN_PROGRESS 0x0080 /* Output is just progess test */
|
2003-11-30 17:36:43 +03:00
|
|
|
#define RUN_NO_CLEAR 0x0100 /* Leave program output after error */
|
2000-10-12 03:47:55 +04:00
|
|
|
|
2003-06-12 01:35:35 +04:00
|
|
|
/* Installation sets */
|
2003-06-12 16:41:55 +04:00
|
|
|
#define SET_KERNEL 0x000000ffu /* allow 8 kernels */
|
|
|
|
#define SET_KERNEL_1 0x00000001u /* Usually GENERIC */
|
|
|
|
#define SET_KERNEL_2 0x00000002u /* MD kernel... */
|
|
|
|
#define SET_KERNEL_3 0x00000004u /* MD kernel... */
|
|
|
|
#define SET_KERNEL_4 0x00000008u /* MD kernel... */
|
|
|
|
#define SET_KERNEL_5 0x00000010u /* MD kernel... */
|
|
|
|
#define SET_KERNEL_6 0x00000020u /* MD kernel... */
|
|
|
|
#define SET_KERNEL_7 0x00000040u /* MD kernel... */
|
|
|
|
#define SET_KERNEL_8 0x00000080u /* MD kernel... */
|
|
|
|
|
|
|
|
#define SET_SYSTEM 0x000fff00u /* all system sets */
|
|
|
|
#define SET_BASE 0x00000100u /* base */
|
|
|
|
#define SET_ETC 0x00000200u /* /etc */
|
|
|
|
#define SET_COMPILER 0x00000400u /* compiler tools */
|
|
|
|
#define SET_GAMES 0x00000800u /* text games */
|
|
|
|
#define SET_MAN_PAGES 0x00001000u /* online manual pages */
|
|
|
|
#define SET_MISC 0x00002000u /* miscellaneuous */
|
|
|
|
#define SET_TEXT_TOOLS 0x00004000u /* text processing tools */
|
|
|
|
|
|
|
|
#define SET_X11 0x0ff00000u /* All X11 sets */
|
|
|
|
#define SET_X11_BASE 0x00100000u /* X11 base and clients */
|
|
|
|
#define SET_X11_FONTS 0x00200000u /* X11 fonts */
|
|
|
|
#define SET_X11_SERVERS 0x00400000u /* X11 servers */
|
2004-01-17 08:30:01 +03:00
|
|
|
#define SET_X11_PROG 0x00800000u /* X11 programming */
|
2004-01-29 11:48:23 +03:00
|
|
|
#define SET_X11_ETC 0x01000000u /* X11 config */
|
2003-06-12 16:41:55 +04:00
|
|
|
|
|
|
|
#define SET_MD 0xf0000000u /* All machine dependant sets */
|
2003-11-30 17:36:43 +03:00
|
|
|
#define SET_MD_1 0x10000000u /* Machine dependant set */
|
|
|
|
#define SET_MD_2 0x20000000u /* Machine dependant set */
|
|
|
|
#define SET_MD_3 0x40000000u /* Machine dependant set */
|
|
|
|
#define SET_MD_4 0x80000000u /* Machine dependant set */
|
2003-06-12 01:35:35 +04:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* Macros */
|
2003-06-05 00:05:12 +04:00
|
|
|
#define nelem(x) (sizeof (x) / sizeof *(x))
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* Round up to the next full cylinder size */
|
2003-11-30 17:36:43 +03:00
|
|
|
#define ROUNDDOWN(n,d) (((n)/(d)) * (d))
|
|
|
|
#define DIVUP(n,d) (((n) + (d) - 1) / (d))
|
|
|
|
#define ROUNDUP(n,d) (DIVUP((n), (d)) * (d))
|
2003-06-05 00:05:12 +04:00
|
|
|
#define NUMSEC(size, sizemult, cylsize) \
|
|
|
|
((size) == -1 ? -1 : (sizemult) == 1 ? (size) : \
|
|
|
|
ROUNDUP((size) * (sizemult), (cylsize)))
|
1997-12-10 07:36:19 +03:00
|
|
|
|
extend sysinst disk handling, some general clean ups, better /etc support
and some sparc64 fixes. details:
- new scripting_{,v}fprintf() that also write to the script log (if open).
- support of creation of LFS filesystems
- standard installs now allow one to choose which file systems to create,
out of the list of /usr, /var, /home, MFS /tmp, and swap. a / is always
created, but the rest all optional. [*]
- new disklabel method: use existing. this requires one to fill in the
mount points (and having at least a "/" is enforced).
- preservation of existing filesystems (at install) is supported.
- rewrote most of make_fstab(): the entire thing is generated from the
bsdlabel now, rather than hard coding / to 'a' and swap to 'b'. create
MFS /tmp if requested.
- if IPv6 support isn't present, don't display any ipv6 messages.
- better rc.conf support
- sparc & sparc64 default to "cylinders" now.
- choosing "standard" instead of "standard with X" de-selects the X pkgs
by default.
- sparc64: don't install bootblocks until we have a complete system, avoids
booting with no /dev/console.
- sparc64: bump STDNEEDMB, it is way low.
[*] i have added default values for DEFVARSIZE & DEFUSRSIZE (this is used
only if /usr and /home are selected) to each port, based on STDNEEDMB. as
such, my guesses might be wrong so port maintainers should look at these.
2001-01-14 05:38:13 +03:00
|
|
|
/* What FS type? */
|
|
|
|
#define PI_ISBSDFS(p) ((p)->pi_fstype == FS_BSDLFS || \
|
|
|
|
(p)->pi_fstype == FS_BSDFFS)
|
|
|
|
|
1997-10-29 04:06:42 +03:00
|
|
|
/* Types */
|
|
|
|
typedef struct distinfo {
|
2003-07-25 12:26:21 +04:00
|
|
|
const char *name;
|
2004-04-19 01:34:56 +04:00
|
|
|
uint set;
|
2003-06-12 01:35:35 +04:00
|
|
|
const char *desc;
|
2004-04-19 01:34:56 +04:00
|
|
|
const char *marker_file; /* set assumed installed if exists */
|
1997-10-29 04:06:42 +03:00
|
|
|
} distinfo;
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1999-03-31 04:44:48 +04:00
|
|
|
typedef struct _partinfo {
|
2003-07-07 16:30:19 +04:00
|
|
|
struct partition pi_partition;
|
|
|
|
#define pi_size pi_partition.p_size
|
|
|
|
#define pi_offset pi_partition.p_offset
|
|
|
|
#define pi_fsize pi_partition.p_fsize
|
|
|
|
#define pi_fstype pi_partition.p_fstype
|
|
|
|
#define pi_frag pi_partition.p_frag
|
|
|
|
#define pi_cpg pi_partition.p_cpg
|
2003-06-05 00:05:12 +04:00
|
|
|
char pi_mount[20];
|
2003-11-30 17:36:43 +03:00
|
|
|
uint pi_isize; /* bytes per inode (for # inodes) */
|
2003-07-07 16:30:19 +04:00
|
|
|
uint pi_flags;
|
2003-08-10 18:51:48 +04:00
|
|
|
#define PIF_NEWFS 0x0001 /* need to 'newfs' partition */
|
2003-11-30 17:36:43 +03:00
|
|
|
#define PIF_FFSv2 0x0002 /* newfs with FFSv2, not FFSv1 */
|
|
|
|
#define PIF_MOUNT 0x0004 /* need to mount partition */
|
2003-08-10 18:51:48 +04:00
|
|
|
#define PIF_ASYNC 0x0010 /* mount -o async */
|
|
|
|
#define PIF_NOATIME 0x0020 /* mount -o noatime */
|
|
|
|
#define PIF_NODEV 0x0040 /* mount -o nodev */
|
|
|
|
#define PIF_NODEVMTIME 0x0080 /* mount -o nodevmtime */
|
|
|
|
#define PIF_NOEXEC 0x0100 /* mount -o noexec */
|
|
|
|
#define PIF_NOSUID 0x0200 /* mount -o nosuid */
|
|
|
|
#define PIF_SOFTDEP 0x0400 /* mount -o softdep */
|
|
|
|
#define PIF_MOUNT_OPTS 0x0ff0 /* all above mount flags */
|
|
|
|
#define PIF_RESET 0x1000 /* internal - restore previous values */
|
1999-03-31 04:44:48 +04:00
|
|
|
} partinfo; /* Single partition from a disklabel */
|
1997-12-04 14:27:56 +03:00
|
|
|
|
2003-06-12 01:35:35 +04:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* variables */
|
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
int debug; /* set by -D option */
|
2003-06-25 19:45:21 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char rel[SSTRSIZE];
|
|
|
|
char machine[SSTRSIZE];
|
1997-09-27 03:02:53 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
int yesno;
|
|
|
|
int ignorerror;
|
|
|
|
int ttysig_ignore;
|
|
|
|
pid_t ttysig_forward;
|
|
|
|
int layoutkind;
|
|
|
|
int sizemult;
|
|
|
|
const char *multname;
|
|
|
|
const char *shellpath;
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1999-01-21 11:02:17 +03:00
|
|
|
/* loging variables */
|
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
int logging;
|
|
|
|
int scripting;
|
|
|
|
FILE *logfp;
|
|
|
|
FILE *script;
|
1999-01-21 11:02:17 +03:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* Hardware variables */
|
2004-06-06 10:06:59 +04:00
|
|
|
unsigned long ramsize;
|
|
|
|
unsigned int rammb ;
|
1997-10-07 08:01:29 +04:00
|
|
|
|
|
|
|
/* Actual name of the disk. */
|
2004-06-06 10:06:59 +04:00
|
|
|
char diskdev[SSTRSIZE];
|
|
|
|
int no_mbr; /* set for raid (etc) */
|
|
|
|
int rootpart; /* partition we install into */
|
|
|
|
const char *disktype; /* ST506, SCSI, ... */
|
1997-09-27 03:02:53 +04:00
|
|
|
|
2003-05-21 14:05:20 +04:00
|
|
|
/* Area of disk we can allocate, start and size in disk sectors. */
|
2004-06-06 10:06:59 +04:00
|
|
|
int ptstart, ptsize;
|
1997-11-01 02:00:32 +03:00
|
|
|
|
2003-07-11 19:28:58 +04:00
|
|
|
/* Actual values for current disk - set by find_disks() or md_get_info() */
|
2004-06-06 10:06:59 +04:00
|
|
|
int sectorsize;
|
|
|
|
int dlcyl, dlhead, dlsec, dlsize, dlcylsize;
|
|
|
|
int current_cylsize;
|
|
|
|
int root_limit;
|
2003-05-21 14:05:20 +04:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* Information for the NetBSD disklabel */
|
2003-11-30 17:36:43 +03:00
|
|
|
enum DLTR { PART_A, PART_B, PART_C, PART_D, PART_E, PART_F, PART_G, PART_H,
|
|
|
|
PART_I, PART_J, PART_K, PART_L, PART_M, PART_N, PART_O, PART_P};
|
1999-08-16 12:29:04 +04:00
|
|
|
#define partition_name(x) ('a' + (x))
|
2004-06-06 10:06:59 +04:00
|
|
|
partinfo oldlabel[MAXPARTITIONS]; /* What we found on the disk */
|
|
|
|
partinfo bsdlabel[MAXPARTITIONS]; /* What we want it to look like */
|
|
|
|
int tmp_mfs_size;
|
2003-06-05 00:05:12 +04:00
|
|
|
|
2003-10-20 00:17:31 +04:00
|
|
|
#define DISKNAME_SIZE 16
|
2004-06-06 10:06:59 +04:00
|
|
|
char bsddiskname[DISKNAME_SIZE];
|
|
|
|
const char *doessf;
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1997-11-11 03:43:31 +03:00
|
|
|
/* Relative file name for storing a distribution. */
|
2004-06-06 10:06:59 +04:00
|
|
|
char dist_dir[STRSIZE];
|
|
|
|
int clean_dist_dir;
|
1997-11-11 03:43:31 +03:00
|
|
|
/* Absolute path name where the distribution should be extracted from. */
|
1998-10-25 22:15:04 +03:00
|
|
|
|
2002-06-06 13:53:22 +04:00
|
|
|
#if !defined(SYSINST_FTP_HOST)
|
2003-11-30 17:36:43 +03:00
|
|
|
#define SYSINST_FTP_HOST "ftp.NetBSD.org"
|
2000-03-25 00:56:04 +03:00
|
|
|
#endif
|
|
|
|
|
2002-06-06 13:53:22 +04:00
|
|
|
#if !defined(SYSINST_FTP_DIR)
|
2004-06-06 01:18:59 +04:00
|
|
|
#define SYSINST_FTP_DIR "pub/NetBSD/NetBSD-" REL
|
2002-06-06 13:53:22 +04:00
|
|
|
#endif
|
2000-03-25 00:56:04 +03:00
|
|
|
|
2004-06-06 01:18:59 +04:00
|
|
|
/* Abs. path we extract from */
|
2004-06-06 10:06:59 +04:00
|
|
|
char ext_dir[STRSIZE];
|
2004-06-06 01:18:59 +04:00
|
|
|
|
|
|
|
/* Place we look in all fs types */
|
2004-06-06 10:06:59 +04:00
|
|
|
char set_dir[STRSIZE];
|
2004-06-06 01:18:59 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char ftp_host[STRSIZE];
|
|
|
|
char ftp_dir[STRSIZE] ;
|
|
|
|
char ftp_user[SSTRSIZE];
|
|
|
|
char ftp_pass[STRSIZE];
|
|
|
|
char ftp_proxy[STRSIZE];
|
1997-09-27 03:02:53 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char nfs_host[STRSIZE];
|
|
|
|
char nfs_dir[STRSIZE];
|
1997-10-15 08:35:17 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char cdrom_dev[SSTRSIZE];
|
1997-10-20 10:13:25 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char localfs_dev[SSTRSIZE];
|
|
|
|
char localfs_fs[SSTRSIZE];
|
|
|
|
char localfs_dir[STRSIZE];
|
1997-11-06 01:45:53 +03:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char targetroot_mnt[SSTRSIZE];
|
|
|
|
char distfs_mnt[SSTRSIZE];
|
1998-02-20 05:33:51 +03:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
int mnt2_mounted;
|
1997-10-20 10:13:25 +04:00
|
|
|
|
2004-06-06 10:06:59 +04:00
|
|
|
char dist_postfix[SSTRSIZE];
|
1997-11-25 09:53:07 +03:00
|
|
|
|
2003-06-12 01:35:35 +04:00
|
|
|
/* selescted sets */
|
|
|
|
extern distinfo dist_list[];
|
|
|
|
extern unsigned int sets_valid;
|
|
|
|
extern unsigned int sets_selected;
|
2003-07-18 13:44:20 +04:00
|
|
|
extern unsigned int sets_installed;
|
2003-06-12 01:35:35 +04:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* needed prototypes */
|
2003-06-05 00:05:12 +04:00
|
|
|
void set_menu_numopts(int, int);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* Machine dependent functions .... */
|
2003-05-19 00:40:09 +04:00
|
|
|
int md_check_partitions(void);
|
|
|
|
void md_cleanup_install(void);
|
|
|
|
int md_copy_filesystem(void);
|
|
|
|
int md_get_info(void);
|
|
|
|
int md_make_bsd_partitions(void);
|
|
|
|
int md_post_disklabel(void);
|
|
|
|
int md_post_newfs(void);
|
|
|
|
int md_pre_disklabel(void);
|
|
|
|
int md_pre_update(void);
|
|
|
|
int md_update(void);
|
|
|
|
void md_init(void);
|
|
|
|
void md_set_sizemultname(void);
|
|
|
|
void md_set_no_x(void);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1997-12-04 12:05:35 +03:00
|
|
|
/* from main.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
void toplevel(void);
|
1997-12-04 12:05:35 +03:00
|
|
|
|
1997-10-15 08:35:17 +04:00
|
|
|
/* from disks.c */
|
2003-06-28 02:20:14 +04:00
|
|
|
int find_disks(const char *);
|
2003-07-07 16:30:19 +04:00
|
|
|
struct menudesc;
|
|
|
|
void fmt_fspart(struct menudesc *, int, void *);
|
2003-05-19 00:40:09 +04:00
|
|
|
void disp_cur_fspart(int, int);
|
|
|
|
int write_disklabel(void);
|
|
|
|
int make_filesystems(void);
|
|
|
|
int make_fstab(void);
|
2003-11-30 17:36:43 +03:00
|
|
|
int mount_disks(void);
|
2003-06-16 14:42:47 +04:00
|
|
|
int set_swap(const char *, partinfo *);
|
|
|
|
int check_swap(const char *, int);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
extend sysinst disk handling, some general clean ups, better /etc support
and some sparc64 fixes. details:
- new scripting_{,v}fprintf() that also write to the script log (if open).
- support of creation of LFS filesystems
- standard installs now allow one to choose which file systems to create,
out of the list of /usr, /var, /home, MFS /tmp, and swap. a / is always
created, but the rest all optional. [*]
- new disklabel method: use existing. this requires one to fill in the
mount points (and having at least a "/" is enforced).
- preservation of existing filesystems (at install) is supported.
- rewrote most of make_fstab(): the entire thing is generated from the
bsdlabel now, rather than hard coding / to 'a' and swap to 'b'. create
MFS /tmp if requested.
- if IPv6 support isn't present, don't display any ipv6 messages.
- better rc.conf support
- sparc & sparc64 default to "cylinders" now.
- choosing "standard" instead of "standard with X" de-selects the X pkgs
by default.
- sparc64: don't install bootblocks until we have a complete system, avoids
booting with no /dev/console.
- sparc64: bump STDNEEDMB, it is way low.
[*] i have added default values for DEFVARSIZE & DEFUSRSIZE (this is used
only if /usr and /home are selected) to each port, based on STDNEEDMB. as
such, my guesses might be wrong so port maintainers should look at these.
2001-01-14 05:38:13 +03:00
|
|
|
/* from disks_lfs.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
int fs_is_lfs(void *);
|
extend sysinst disk handling, some general clean ups, better /etc support
and some sparc64 fixes. details:
- new scripting_{,v}fprintf() that also write to the script log (if open).
- support of creation of LFS filesystems
- standard installs now allow one to choose which file systems to create,
out of the list of /usr, /var, /home, MFS /tmp, and swap. a / is always
created, but the rest all optional. [*]
- new disklabel method: use existing. this requires one to fill in the
mount points (and having at least a "/" is enforced).
- preservation of existing filesystems (at install) is supported.
- rewrote most of make_fstab(): the entire thing is generated from the
bsdlabel now, rather than hard coding / to 'a' and swap to 'b'. create
MFS /tmp if requested.
- if IPv6 support isn't present, don't display any ipv6 messages.
- better rc.conf support
- sparc & sparc64 default to "cylinders" now.
- choosing "standard" instead of "standard with X" de-selects the X pkgs
by default.
- sparc64: don't install bootblocks until we have a complete system, avoids
booting with no /dev/console.
- sparc64: bump STDNEEDMB, it is way low.
[*] i have added default values for DEFVARSIZE & DEFUSRSIZE (this is used
only if /usr and /home are selected) to each port, based on STDNEEDMB. as
such, my guesses might be wrong so port maintainers should look at these.
2001-01-14 05:38:13 +03:00
|
|
|
|
1997-12-04 14:27:56 +03:00
|
|
|
/* from label.c */
|
2003-07-07 16:30:19 +04:00
|
|
|
const char *get_last_mounted(int, int);
|
2003-05-19 00:40:09 +04:00
|
|
|
int savenewlabel(partinfo *, int);
|
|
|
|
int incorelabel(const char *, partinfo *);
|
|
|
|
int edit_and_check_label(partinfo *, int, int, int);
|
2003-06-10 21:47:15 +04:00
|
|
|
int getpartoff(int);
|
|
|
|
int getpartsize(int, int);
|
2003-11-30 17:36:43 +03:00
|
|
|
void set_bsize(partinfo *, int);
|
|
|
|
void set_fsize(partinfo *, int);
|
|
|
|
void set_ptype(partinfo *, int, int, int);
|
1997-12-04 14:27:56 +03:00
|
|
|
|
1997-10-15 08:35:17 +04:00
|
|
|
/* from install.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
void do_install(void);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* from factor.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
void factor(long, long *, int, int *);
|
1997-10-15 08:35:17 +04:00
|
|
|
|
1999-03-31 04:44:48 +04:00
|
|
|
/* from fdisk.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
void get_disk_info(char *);
|
|
|
|
void set_disk_info(char *);
|
1999-03-31 04:44:48 +04:00
|
|
|
|
1997-10-15 08:35:17 +04:00
|
|
|
/* from geom.c */
|
2003-07-07 16:30:19 +04:00
|
|
|
int get_geom(const char *, struct disklabel *);
|
|
|
|
int get_real_geom(const char *, struct disklabel *);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* from net.c */
|
2003-07-20 02:07:36 +04:00
|
|
|
extern char net_namesvr6[STRSIZE];
|
2003-05-19 00:40:09 +04:00
|
|
|
int get_via_ftp(void);
|
|
|
|
int get_via_nfs(void);
|
|
|
|
int config_network(void);
|
|
|
|
void mnt_net_config(void);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1997-10-15 08:35:17 +04:00
|
|
|
/* From run.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
int collect(int, char **, const char *, ...);
|
2003-11-30 17:36:43 +03:00
|
|
|
int run_program(int, const char *, ...);
|
2003-05-19 00:40:09 +04:00
|
|
|
void do_logging(void);
|
|
|
|
int do_system(const char *);
|
1997-10-15 08:35:17 +04:00
|
|
|
|
|
|
|
/* from upgrade.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
void do_upgrade(void);
|
|
|
|
void do_reinstall_sets(void);
|
2003-07-18 13:44:20 +04:00
|
|
|
void restore_etc(void);
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* from util.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
int dir_exists_p(const char *);
|
|
|
|
int file_exists_p(const char *);
|
|
|
|
int file_mode_match(const char *, unsigned int);
|
|
|
|
int distribution_sets_exist_p(const char *);
|
|
|
|
void get_ramsize(void);
|
|
|
|
void ask_sizemult(int);
|
|
|
|
void reask_sizemult(int);
|
|
|
|
void run_makedev(void);
|
|
|
|
int get_via_floppy(void);
|
|
|
|
int get_via_cdrom(void);
|
|
|
|
int get_via_localfs(void);
|
|
|
|
int get_via_localdir(void);
|
2003-07-25 12:26:21 +04:00
|
|
|
void cd_dist_dir(const char *);
|
2003-05-19 00:40:09 +04:00
|
|
|
void show_cur_distsets(void);
|
|
|
|
void make_ramdisk_dir(const char *);
|
2004-06-06 01:18:59 +04:00
|
|
|
int get_and_unpack_sets(int, msg, msg, msg);
|
2003-05-19 00:40:09 +04:00
|
|
|
int sanity_check(void);
|
|
|
|
int set_timezone(void);
|
|
|
|
int set_crypt_type(void);
|
|
|
|
int set_root_password(void);
|
|
|
|
int set_root_shell(void);
|
extend sysinst disk handling, some general clean ups, better /etc support
and some sparc64 fixes. details:
- new scripting_{,v}fprintf() that also write to the script log (if open).
- support of creation of LFS filesystems
- standard installs now allow one to choose which file systems to create,
out of the list of /usr, /var, /home, MFS /tmp, and swap. a / is always
created, but the rest all optional. [*]
- new disklabel method: use existing. this requires one to fill in the
mount points (and having at least a "/" is enforced).
- preservation of existing filesystems (at install) is supported.
- rewrote most of make_fstab(): the entire thing is generated from the
bsdlabel now, rather than hard coding / to 'a' and swap to 'b'. create
MFS /tmp if requested.
- if IPv6 support isn't present, don't display any ipv6 messages.
- better rc.conf support
- sparc & sparc64 default to "cylinders" now.
- choosing "standard" instead of "standard with X" de-selects the X pkgs
by default.
- sparc64: don't install bootblocks until we have a complete system, avoids
booting with no /dev/console.
- sparc64: bump STDNEEDMB, it is way low.
[*] i have added default values for DEFVARSIZE & DEFUSRSIZE (this is used
only if /usr and /home are selected) to each port, based on STDNEEDMB. as
such, my guesses might be wrong so port maintainers should look at these.
2001-01-14 05:38:13 +03:00
|
|
|
void scripting_fprintf(FILE *, const char *, ...);
|
|
|
|
void scripting_vfprintf(FILE *, const char *, va_list);
|
|
|
|
void add_rc_conf(const char *, ...);
|
2003-10-20 00:17:31 +04:00
|
|
|
void enable_rc_conf(void);
|
extend sysinst disk handling, some general clean ups, better /etc support
and some sparc64 fixes. details:
- new scripting_{,v}fprintf() that also write to the script log (if open).
- support of creation of LFS filesystems
- standard installs now allow one to choose which file systems to create,
out of the list of /usr, /var, /home, MFS /tmp, and swap. a / is always
created, but the rest all optional. [*]
- new disklabel method: use existing. this requires one to fill in the
mount points (and having at least a "/" is enforced).
- preservation of existing filesystems (at install) is supported.
- rewrote most of make_fstab(): the entire thing is generated from the
bsdlabel now, rather than hard coding / to 'a' and swap to 'b'. create
MFS /tmp if requested.
- if IPv6 support isn't present, don't display any ipv6 messages.
- better rc.conf support
- sparc & sparc64 default to "cylinders" now.
- choosing "standard" instead of "standard with X" de-selects the X pkgs
by default.
- sparc64: don't install bootblocks until we have a complete system, avoids
booting with no /dev/console.
- sparc64: bump STDNEEDMB, it is way low.
[*] i have added default values for DEFVARSIZE & DEFUSRSIZE (this is used
only if /usr and /home are selected) to each port, based on STDNEEDMB. as
such, my guesses might be wrong so port maintainers should look at these.
2001-01-14 05:38:13 +03:00
|
|
|
int check_partitions(void);
|
|
|
|
void set_sizemultname_cyl(void);
|
|
|
|
void set_sizemultname_meg(void);
|
|
|
|
int check_lfs_progs(void);
|
2003-06-12 01:35:35 +04:00
|
|
|
void customise_sets(void);
|
2003-10-20 00:17:31 +04:00
|
|
|
void umount_mnt2(void);
|
1997-11-02 12:41:57 +03:00
|
|
|
|
|
|
|
/* from target.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
const char *concat_paths(const char *, const char *);
|
|
|
|
char *target_realpath(const char *, char *);
|
|
|
|
const char *target_expand(const char *);
|
|
|
|
void make_target_dir(const char *);
|
|
|
|
void append_to_target_file(const char *, const char *);
|
|
|
|
void echo_to_target_file(const char *, const char *);
|
|
|
|
void sprintf_to_target_file(const char *, const char *, ...);
|
|
|
|
void trunc_target_file(const char *);
|
|
|
|
const char *target_prefix(void);
|
|
|
|
int target_chdir(const char *);
|
|
|
|
void target_chdir_or_die(const char *);
|
|
|
|
int target_already_root(void);
|
|
|
|
FILE *target_fopen(const char *, const char *);
|
2003-07-25 12:26:21 +04:00
|
|
|
int target_collect_file(int, char **, const char *);
|
2003-09-27 14:47:17 +04:00
|
|
|
int is_active_rootpart(const char *, int);
|
2003-05-19 00:40:09 +04:00
|
|
|
int cp_to_target(const char *, const char *);
|
|
|
|
void dup_file_into_target(const char *);
|
|
|
|
void mv_within_target_or_die(const char *, const char *);
|
2003-12-28 08:30:47 +03:00
|
|
|
int cp_within_target(const char *, const char *, int);
|
2003-11-30 17:36:43 +03:00
|
|
|
int target_mount(const char *, const char *, int, const char *);
|
2003-05-19 00:40:09 +04:00
|
|
|
int target_test(unsigned int, const char *);
|
|
|
|
int target_dir_exists_p(const char *);
|
|
|
|
int target_file_exists_p(const char *);
|
|
|
|
int target_symlink_exists_p(const char *);
|
|
|
|
void unwind_mounts(void);
|
1997-12-04 14:27:56 +03:00
|
|
|
|
extend sysinst disk handling, some general clean ups, better /etc support
and some sparc64 fixes. details:
- new scripting_{,v}fprintf() that also write to the script log (if open).
- support of creation of LFS filesystems
- standard installs now allow one to choose which file systems to create,
out of the list of /usr, /var, /home, MFS /tmp, and swap. a / is always
created, but the rest all optional. [*]
- new disklabel method: use existing. this requires one to fill in the
mount points (and having at least a "/" is enforced).
- preservation of existing filesystems (at install) is supported.
- rewrote most of make_fstab(): the entire thing is generated from the
bsdlabel now, rather than hard coding / to 'a' and swap to 'b'. create
MFS /tmp if requested.
- if IPv6 support isn't present, don't display any ipv6 messages.
- better rc.conf support
- sparc & sparc64 default to "cylinders" now.
- choosing "standard" instead of "standard with X" de-selects the X pkgs
by default.
- sparc64: don't install bootblocks until we have a complete system, avoids
booting with no /dev/console.
- sparc64: bump STDNEEDMB, it is way low.
[*] i have added default values for DEFVARSIZE & DEFUSRSIZE (this is used
only if /usr and /home are selected) to each port, based on STDNEEDMB. as
such, my guesses might be wrong so port maintainers should look at these.
2001-01-14 05:38:13 +03:00
|
|
|
/* from bsddisklabel.c */
|
2003-05-21 14:05:20 +04:00
|
|
|
int make_bsd_partitions(void);
|
2002-02-04 01:21:55 +03:00
|
|
|
|
|
|
|
/* from aout2elf.c */
|
2003-05-19 00:40:09 +04:00
|
|
|
int move_aout_libs(void);
|
2004-06-12 23:18:24 +04:00
|
|
|
|
|
|
|
#ifdef WSKBD
|
|
|
|
void get_kb_encoding(void);
|
|
|
|
void save_kb_encoding(void);
|
|
|
|
#else
|
|
|
|
#define get_kb_encoding()
|
|
|
|
#define save_kb_encoding()
|
|
|
|
#endif
|
2003-05-19 00:40:09 +04:00
|
|
|
#endif /* _DEFS_H_ */
|