From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from oss.sgi.com (localhost [127.0.0.1]) by oss.sgi.com (8.12.3/8.12.3) with ESMTP id g61FQ1nC008258 for ; Mon, 1 Jul 2002 08:26:01 -0700 Received: (from majordomo@localhost) by oss.sgi.com (8.12.3/8.12.3/Submit) id g61FQ1WF008257 for linux-mips-outgoing; Mon, 1 Jul 2002 08:26:01 -0700 X-Authentication-Warning: oss.sgi.com: majordomo set sender to owner-linux-mips@oss.sgi.com using -f Received: from opus.bloom.county (cpe-24-221-152-185.az.sprintbbd.net [24.221.152.185]) by oss.sgi.com (8.12.3/8.12.3) with SMTP id g61FPmnC008242 for ; Mon, 1 Jul 2002 08:25:49 -0700 Received: from tmrini by opus.bloom.county with local (Exim 3.35 #1 (Debian)) id 17P370-0005jM-00; Mon, 01 Jul 2002 08:29:10 -0700 Date: Mon, 1 Jul 2002 08:29:10 -0700 From: Tom Rini To: Marcelo Tosatti Cc: linux-kernel@vger.kernel.org, linux-mips@oss.sgi.com, linux-alpha@vger.kernel.org Subject: [PATCH 2.4.19-rc1] Make sure drivers/input/Config.in goes before drivers/char/Config.in Message-ID: <20020701152910.GD20920@opus.bloom.county> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-Spam-Status: No, hits=-5.0 required=5.0 tests=UNIFIED_PATCH version=2.20 X-Spam-Level: Sender: owner-linux-mips@oss.sgi.com Precedence: bulk This makes drivers/input/Config.in always comes before drivers/char/Config.in. Currently, alpha, mips and mips64 source drivers/input/Config.in after drivers/char/Config.in. But as noted in most of the other arches config.in, drivers/input/Config.in must come before drivers/char/Config.in for all depenancies to be worked out. This adds that comments to these arches as well as fixing the dependancy. On the off chance that this is intentional, linux-mips and linux-alpha are CC'ed as well. -- Tom Rini (TR1265) http://gate.crashing.org/~trini/ ===== arch/alpha/config.in 1.15 vs edited ===== --- 1.15/arch/alpha/config.in Sat May 25 19:37:06 2002 +++ edited/arch/alpha/config.in Mon Jul 1 07:16:45 2002 @@ -362,6 +362,10 @@ fi endmenu +# +# input before char - char/joystick depends on it. As does USB. +# +source drivers/input/Config.in source drivers/char/Config.in #source drivers/misc/Config.in @@ -397,7 +401,6 @@ endmenu source drivers/usb/Config.in -source drivers/input/Config.in source net/bluetooth/Config.in ===== arch/mips/config.in 1.6 vs edited ===== --- 1.6/arch/mips/config.in Thu Feb 28 06:57:19 2002 +++ edited/arch/mips/config.in Mon Jul 1 07:17:22 2002 @@ -563,6 +563,10 @@ fi endmenu +# +# input before char - char/joystick depends on it. As does USB. +# +source drivers/input/Config.in source drivers/char/Config.in source drivers/media/Config.in @@ -628,7 +632,6 @@ fi source drivers/usb/Config.in -source drivers/input/Config.in mainmenu_option next_comment comment 'Kernel hacking' ===== arch/mips64/config.in 1.6 vs edited ===== --- 1.6/arch/mips64/config.in Thu Feb 28 06:57:19 2002 +++ edited/arch/mips64/config.in Mon Jul 1 07:17:38 2002 @@ -284,6 +284,10 @@ fi endmenu +# +# input before char - char/joystick depends on it. As does USB. +# +source drivers/input/Config.in source drivers/char/Config.in #source drivers/misc/Config.in @@ -325,7 +329,6 @@ fi source drivers/usb/Config.in -source drivers/input/Config.in mainmenu_option next_comment comment 'Kernel hacking'