mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-16 15:11:52 +00:00
Reviewed by: Doug Rabson
Submitted by: nsouch Adding I2C and SMB entries to LINT, CONFIGVERS modified in Makefile.i386
This commit is contained in:
parent
d70424edcb
commit
8afa373cc6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38778
@ -1,7 +1,7 @@
|
||||
# Makefile.i386 -- with config changes.
|
||||
# Copyright 1990 W. Jolitz
|
||||
# from: @(#)Makefile.i386 7.1 5/10/91
|
||||
# $Id: Makefile.i386,v 1.119 1998/08/31 11:43:26 jb Exp $
|
||||
# $Id: Makefile.i386,v 1.120 1998/09/01 00:11:02 jb Exp $
|
||||
#
|
||||
# Makefile for FreeBSD
|
||||
#
|
||||
@ -17,7 +17,7 @@
|
||||
#
|
||||
|
||||
# Which version of config(8) is required.
|
||||
%VERSREQ= 300005
|
||||
%VERSREQ= 300006
|
||||
|
||||
KERNFORMAT?= aout
|
||||
|
||||
@ -111,6 +111,8 @@ SYSTEM_LD_TAIL= @size -elf ${.TARGET} ; chmod 755 ${.TARGET}
|
||||
|
||||
%SFILES
|
||||
|
||||
%MFILES
|
||||
|
||||
%LOAD
|
||||
|
||||
%CLEAN
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Makefile.i386 -- with config changes.
|
||||
# Copyright 1990 W. Jolitz
|
||||
# from: @(#)Makefile.i386 7.1 5/10/91
|
||||
# $Id: Makefile.i386,v 1.119 1998/08/31 11:43:26 jb Exp $
|
||||
# $Id: Makefile.i386,v 1.120 1998/09/01 00:11:02 jb Exp $
|
||||
#
|
||||
# Makefile for FreeBSD
|
||||
#
|
||||
@ -17,7 +17,7 @@
|
||||
#
|
||||
|
||||
# Which version of config(8) is required.
|
||||
%VERSREQ= 300005
|
||||
%VERSREQ= 300006
|
||||
|
||||
KERNFORMAT?= aout
|
||||
|
||||
@ -111,6 +111,8 @@ SYSTEM_LD_TAIL= @size -elf ${.TARGET} ; chmod 755 ${.TARGET}
|
||||
|
||||
%SFILES
|
||||
|
||||
%MFILES
|
||||
|
||||
%LOAD
|
||||
|
||||
%CLEAN
|
||||
|
@ -2,7 +2,7 @@
|
||||
# LINT -- config file for checking all the sources, tries to pull in
|
||||
# as much of the source tree as it can.
|
||||
#
|
||||
# $Id: LINT,v 1.455 1998/08/27 01:30:53 obrien Exp $
|
||||
# $Id: LINT,v 1.456 1998/08/27 02:37:11 jkh Exp $
|
||||
#
|
||||
# NB: You probably don't want to try running a kernel built from this
|
||||
# file. Instead, you should start from GENERIC, and add options from
|
||||
@ -1445,6 +1445,41 @@ device pcic1 at card?
|
||||
|
||||
options POWERFAIL_NMI # make it beep instead of panicing
|
||||
|
||||
#
|
||||
# SMB bus
|
||||
#
|
||||
# System Management Bus support provided by the 'smbus' device.
|
||||
#
|
||||
# Supported devices:
|
||||
# smb standard io
|
||||
#
|
||||
# Supported interfaces:
|
||||
# iicsmb I2C to SMB bridge
|
||||
#
|
||||
controller smbus0
|
||||
|
||||
device smb0 at smbus?
|
||||
|
||||
#
|
||||
# I2C Bus
|
||||
#
|
||||
# Philips i2c bus support is provided by the `iicbus' device.
|
||||
#
|
||||
# Supported devices:
|
||||
# ic i2c network interface
|
||||
# iic i2c standard io
|
||||
#
|
||||
# Supported interfaces:
|
||||
# pcf Philips PCF8584 ISA-bus controller
|
||||
#
|
||||
controller iicbus0
|
||||
|
||||
device ic0 at iicbus?
|
||||
device iic0 at iicbus?
|
||||
device iicsmb0 at iicbus?
|
||||
|
||||
controller pcf0 at isa? port 0x320 net irq 5 vector pcfintr
|
||||
|
||||
#
|
||||
# Parallel-Port Bus
|
||||
#
|
||||
|
@ -2,7 +2,7 @@
|
||||
# LINT -- config file for checking all the sources, tries to pull in
|
||||
# as much of the source tree as it can.
|
||||
#
|
||||
# $Id: LINT,v 1.455 1998/08/27 01:30:53 obrien Exp $
|
||||
# $Id: LINT,v 1.456 1998/08/27 02:37:11 jkh Exp $
|
||||
#
|
||||
# NB: You probably don't want to try running a kernel built from this
|
||||
# file. Instead, you should start from GENERIC, and add options from
|
||||
@ -1445,6 +1445,41 @@ device pcic1 at card?
|
||||
|
||||
options POWERFAIL_NMI # make it beep instead of panicing
|
||||
|
||||
#
|
||||
# SMB bus
|
||||
#
|
||||
# System Management Bus support provided by the 'smbus' device.
|
||||
#
|
||||
# Supported devices:
|
||||
# smb standard io
|
||||
#
|
||||
# Supported interfaces:
|
||||
# iicsmb I2C to SMB bridge
|
||||
#
|
||||
controller smbus0
|
||||
|
||||
device smb0 at smbus?
|
||||
|
||||
#
|
||||
# I2C Bus
|
||||
#
|
||||
# Philips i2c bus support is provided by the `iicbus' device.
|
||||
#
|
||||
# Supported devices:
|
||||
# ic i2c network interface
|
||||
# iic i2c standard io
|
||||
#
|
||||
# Supported interfaces:
|
||||
# pcf Philips PCF8584 ISA-bus controller
|
||||
#
|
||||
controller iicbus0
|
||||
|
||||
device ic0 at iicbus?
|
||||
device iic0 at iicbus?
|
||||
device iicsmb0 at iicbus?
|
||||
|
||||
controller pcf0 at isa? port 0x320 net irq 5 vector pcfintr
|
||||
|
||||
#
|
||||
# Parallel-Port Bus
|
||||
#
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Makefile.i386 -- with config changes.
|
||||
# Copyright 1990 W. Jolitz
|
||||
# from: @(#)Makefile.i386 7.1 5/10/91
|
||||
# $Id: Makefile.i386,v 1.119 1998/08/31 11:43:26 jb Exp $
|
||||
# $Id: Makefile.i386,v 1.120 1998/09/01 00:11:02 jb Exp $
|
||||
#
|
||||
# Makefile for FreeBSD
|
||||
#
|
||||
@ -17,7 +17,7 @@
|
||||
#
|
||||
|
||||
# Which version of config(8) is required.
|
||||
%VERSREQ= 300005
|
||||
%VERSREQ= 300006
|
||||
|
||||
KERNFORMAT?= aout
|
||||
|
||||
@ -111,6 +111,8 @@ SYSTEM_LD_TAIL= @size -elf ${.TARGET} ; chmod 755 ${.TARGET}
|
||||
|
||||
%SFILES
|
||||
|
||||
%MFILES
|
||||
|
||||
%LOAD
|
||||
|
||||
%CLEAN
|
||||
|
@ -2,7 +2,7 @@
|
||||
# LINT -- config file for checking all the sources, tries to pull in
|
||||
# as much of the source tree as it can.
|
||||
#
|
||||
# $Id: LINT,v 1.455 1998/08/27 01:30:53 obrien Exp $
|
||||
# $Id: LINT,v 1.456 1998/08/27 02:37:11 jkh Exp $
|
||||
#
|
||||
# NB: You probably don't want to try running a kernel built from this
|
||||
# file. Instead, you should start from GENERIC, and add options from
|
||||
@ -1445,6 +1445,41 @@ device pcic1 at card?
|
||||
|
||||
options POWERFAIL_NMI # make it beep instead of panicing
|
||||
|
||||
#
|
||||
# SMB bus
|
||||
#
|
||||
# System Management Bus support provided by the 'smbus' device.
|
||||
#
|
||||
# Supported devices:
|
||||
# smb standard io
|
||||
#
|
||||
# Supported interfaces:
|
||||
# iicsmb I2C to SMB bridge
|
||||
#
|
||||
controller smbus0
|
||||
|
||||
device smb0 at smbus?
|
||||
|
||||
#
|
||||
# I2C Bus
|
||||
#
|
||||
# Philips i2c bus support is provided by the `iicbus' device.
|
||||
#
|
||||
# Supported devices:
|
||||
# ic i2c network interface
|
||||
# iic i2c standard io
|
||||
#
|
||||
# Supported interfaces:
|
||||
# pcf Philips PCF8584 ISA-bus controller
|
||||
#
|
||||
controller iicbus0
|
||||
|
||||
device ic0 at iicbus?
|
||||
device iic0 at iicbus?
|
||||
device iicsmb0 at iicbus?
|
||||
|
||||
controller pcf0 at isa? port 0x320 net irq 5 vector pcfintr
|
||||
|
||||
#
|
||||
# Parallel-Port Bus
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user