diff options
author | nyan <nyan@FreeBSD.org> | 2002-11-03 10:06:22 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2002-11-03 10:06:22 +0000 |
commit | 28a2b9046b83430df64a3cf504879f318b725eb9 (patch) | |
tree | 5259b287635df95c219b55bc8b9f3ddf5a3d7ec7 /usr.sbin/sysinstall/sysinstall.h | |
parent | 7479c2d936862c1fd87f63df9dc908b2c0044a6b (diff) | |
download | FreeBSD-src-28a2b9046b83430df64a3cf504879f318b725eb9.zip FreeBSD-src-28a2b9046b83430df64a3cf504879f318b725eb9.tar.gz |
- Added the MenuIPLType menu for selecting pc98 boot IPL.
- Disabled 'Syscons, Font', 'Syscons, Screenmap' and 'Syscons, Ttys' menus
on pc98.
- Fixed the MenuMouseType and MenuMousePort menus for pc98.
- Fixed some comments for pc98.
Diffstat (limited to 'usr.sbin/sysinstall/sysinstall.h')
-rw-r--r-- | usr.sbin/sysinstall/sysinstall.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/sysinstall/sysinstall.h b/usr.sbin/sysinstall/sysinstall.h index e712be7..4b47541 100644 --- a/usr.sbin/sysinstall/sysinstall.h +++ b/usr.sbin/sysinstall/sysinstall.h @@ -379,7 +379,11 @@ extern int BootMgr; /* Which boot manager to use */ extern int StatusLine; /* Where to print our status messages */ extern DMenu MenuInitial; /* Initial installation menu */ extern DMenu MenuFixit; /* Fixit repair menu */ +#ifdef PC98 +extern DMenu MenuIPLType; /* Type of IPL to write on the disk */ +#else extern DMenu MenuMBRType; /* Type of MBR to write on the disk */ +#endif extern DMenu MenuConfigure; /* Final configuration menu */ extern DMenu MenuDocumentation; /* Documentation menu */ extern DMenu MenuFTPOptions; /* FTP Installation options */ |