- The old printer driver is renamed 'olpt'.

- Added the gdc driver.
This commit is contained in:
Yoshihiro Takahashi 1999-08-28 15:17:25 +00:00
parent 14fffcebea
commit c8662eda6f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50515

View file

@ -430,7 +430,9 @@ static DEV_INFO device_info[] = {
{"si", "Specialix SI/XIO async adapter", 0, CLS_COMMS},
{"stl", "Stallion EasyIO/Easy Connection 8/32 async adapter",0, CLS_COMMS},
{"stli", "Stallion intelligent async adapter" ,0, CLS_COMMS},
{"lpt", "Parallel printer port", 0, CLS_COMMS},
#ifdef PC98
{"olpt", "Parallel printer port", 0, CLS_COMMS},
#endif
{"ppc", "Parallel Port chipset", 0, CLS_COMMS},
{"ppi", "Generic Parallel Port I/O device", FLG_FIXED, CLS_COMMS},
{"lpt", "Line Printer driver", FLG_FIXED, CLS_COMMS},
@ -460,7 +462,9 @@ static DEV_INFO device_info[] = {
{"gusxvi", "Gravis Ultrasound 16-bit PCM", 0, CLS_MMEDIA},
{"gusmax", "Gravis Ultrasound MAX", 0, CLS_MMEDIA},
{"mss", "Microsoft Sound System", 0, CLS_MMEDIA},
#ifdef PC98
{"nss", "PC-9801-86 Sound Board", 0, CLS_MMEDIA},
#endif
{"opl", "OPL-2/3 FM, Soundblaster, SBPro, SB16, ProAudio Spectrum",0,CLS_MMEDIA},
{"mpu", "Roland MPU401 MIDI", 0, CLS_MMEDIA},
{"sscape", "Ensoniq Soundscape MIDI interface", 0, CLS_MMEDIA},
@ -478,6 +482,9 @@ static DEV_INFO device_info[] = {
{"labpc", "National Instruments Lab-PC/Lab-PC+", 0, CLS_MISC},
{"npx", "Math coprocessor", FLG_IMMUTABLE, CLS_MISC},
{"lkm", "Loadable PCI driver support", FLG_INVISIBLE, CLS_MISC},
#ifdef PC98
{"gdc", "Graphic Display Controller", FLG_INVISIBLE, CLS_MISC},
#endif
{"vga", "Catchall PCI VGA driver", FLG_INVISIBLE, CLS_MISC},
{"chip", "PCI chipset support", FLG_INVISIBLE, CLS_MISC},
{"piix", "Intel 82371 Bus-master IDE controller", FLG_INVISIBLE, CLS_MISC},