diff options
author | phk <phk@FreeBSD.org> | 1994-10-26 02:53:15 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-10-26 02:53:15 +0000 |
commit | 924ebf6a0f8cccb5264f2e21122ff691fa88c4f4 (patch) | |
tree | bf6fcb242698519a57a9320c87121766028e076d /sbin/sysinstall/sysinstall.h | |
parent | 22dfeb1b9b794006113f7f0f2afd4e593daf4cc4 (diff) | |
download | FreeBSD-src-924ebf6a0f8cccb5264f2e21122ff691fa88c4f4.zip FreeBSD-src-924ebf6a0f8cccb5264f2e21122ff691fa88c4f4.tar.gz |
New and Improved! crunch with gzip, newfs, fsck and cpio. gzip result.
fits on 1200 kb floppy with unstripped GENERIC kernel.
Diffstat (limited to 'sbin/sysinstall/sysinstall.h')
-rw-r--r-- | sbin/sysinstall/sysinstall.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sbin/sysinstall/sysinstall.h b/sbin/sysinstall/sysinstall.h index a1efd3f..9cb44b4 100644 --- a/sbin/sysinstall/sysinstall.h +++ b/sbin/sysinstall/sysinstall.h @@ -54,8 +54,9 @@ void *Malloc __P((size_t size)); char *StrAlloc __P((char *str)); void Fatal __P((char *fmt, ...)); void AskAbort __P((char *fmt, ...)); -void MountUfs __P((char *device, char *prefix, char *mountpoint, int do_mkdir)); +void MountUfs __P((char *device, char *mountpoint, int do_mkdir,int flags)); void Mkdir __P((char *path)); +void CopyFile __P((char *p1, char *p2)); /* exec.c */ int exec __P((int magic, char *cmd, char *args, ...)); @@ -73,5 +74,14 @@ void stage2 __P((void)); /* stage3.c */ void stage3 __P((void)); +/* stage4.c */ +void stage4 __P((void)); + +/* stage5.c */ +void stage5 __P((void)); + /* termcap.c */ int set_termcap __P((void)); + +/* makedevs.c */ +int makedevs __P((void)); |