From owner-cvs-all Sun Jan 23 4: 8:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE0D215001; Sun, 23 Jan 2000 04:08:26 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA55405; Sun, 23 Jan 2000 04:01:09 -0800 (PST) (envelope-from peter@FreeBSD.org) Message-Id: <200001231201.EAA55405@freefall.freebsd.org> From: Peter Wemm Date: Sun, 23 Jan 2000 04:01:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/config config.y mkioconf.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk peter 2000/01/23 04:01:09 PST Modified files: usr.sbin/config config.y mkioconf.c Log: Clean up something in config(8) that has annoyed me for ages. Remove the need to specify the unit number of unwired devices. ie: instead of saying "device fxp0" we can say "device fxp" which is much closer to what it actually means. The former (fxp0) implied something about reserving the 0th unit, but it does not and never did - it was a figment of config(8)'s imagination that we had to work around.. "device fxp0" simply means "compile in the fxp device driver", so we may as well just write it as "device fxp" which is closer to what it really means. Doing this also saves us from filling up the ioconf.c tables with meaningless entries. Revision Changes Path 1.40 +16 -12 src/usr.sbin/config/config.y 1.60 +5 -1 src/usr.sbin/config/mkioconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message