public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Russell King <rmk@arm.linux.org.uk>
To: Lightweight patch manager <patch@luckynet.dynu.com>
Cc: Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH][2.5] Get export-objs right
Date: Mon, 22 Jul 2002 13:55:32 +0100	[thread overview]
Message-ID: <20020722135532.C2838@flint.arm.linux.org.uk> (raw)
In-Reply-To: <Pine.LNX.4.44.0207220642530.30654-100000@hawkeye.luckynet.adm>; from patch@luckynet.dynu.com on Mon, Jul 22, 2002 at 06:47:04AM -0600

On Mon, Jul 22, 2002 at 06:47:04AM -0600, Lightweight patch manager wrote:
> This corrects all export-objs directives in Makefiles that regard .c 
> files.
> 
> diff -Nur linux-2.5.27/arch/arm/kernel/Makefile thunder-2.5/arch/arm/kernel/Makefile
> --- linux-2.5.27/arch/arm/kernel/Makefile	Sat Jul 20 13:12:18 2002
> +++ thunder-2.5/arch/arm/kernel/Makefile	Mon Jul 22 06:19:21 2002
> @@ -17,7 +17,7 @@
>  obj-n		:=
>  obj-		:=
>  
> -export-objs	:= armksyms.o apm.o dma.o ecard.o fiq.o io.o time.o
> +export-objs	:= armksyms.o dma.o ecard.o fiq.o io.o time.o

apm.c waiting to be merged.

>  obj-$(CONFIG_APM)		+= apm.o
>  obj-$(CONFIG_ARCH_ACORN)	+= ecard.o time-acorn.o
> diff -Nur linux-2.5.27/arch/arm/mach-clps711x/Makefile thunder-2.5/arch/arm/mach-clps711x/Makefile
> --- linux-2.5.27/arch/arm/mach-clps711x/Makefile	Sat Jul 20 13:12:26 2002
> +++ thunder-2.5/arch/arm/mach-clps711x/Makefile	Mon Jul 22 06:19:53 2002
> @@ -14,8 +14,6 @@
>  obj-n			:=
>  obj-			:=
>  
> -export-objs		:= leds-p720t.o
> -

This one's fine.

>  obj-$(CONFIG_ARCH_AUTCPU12) += autcpu12.o
>  obj-$(CONFIG_ARCH_CDB89712) += cdb89712.o
>  obj-$(CONFIG_ARCH_CLEP7312) += clep7312.o
> diff -Nur linux-2.5.27/arch/arm/mach-ftvpci/Makefile thunder-2.5/arch/arm/mach-ftvpci/Makefile
> --- linux-2.5.27/arch/arm/mach-ftvpci/Makefile	Sat Jul 20 13:12:23 2002
> +++ thunder-2.5/arch/arm/mach-ftvpci/Makefile	Mon Jul 22 06:20:41 2002
> @@ -14,7 +14,7 @@
>  obj-n			:=
>  obj-			:=
>  
> -export-objs		:= 
> +export-objs		:= leds.o

Fine.

>  obj-$(CONFIG_PCI)	+= pci.o
>  obj-$(CONFIG_LEDS)	+= leds.o
> diff -Nur linux-2.5.27/arch/arm/mach-integrator/Makefile thunder-2.5/arch/arm/mach-integrator/Makefile
> --- linux-2.5.27/arch/arm/mach-integrator/Makefile	Sat Jul 20 13:12:18 2002
> +++ thunder-2.5/arch/arm/mach-integrator/Makefile	Mon Jul 22 06:20:22 2002
> @@ -14,8 +14,6 @@
>  obj-n			:=
>  obj-			:=
>  
> -export-objs		:= leds.o
> -

Fine.

>  obj-$(CONFIG_LEDS)	+= leds.o
>  obj-$(CONFIG_PCI)	+= pci_v3.o pci.o
>  
> diff -Nur linux-2.5.27/arch/arm/mach-pxa/Makefile thunder-2.5/arch/arm/mach-pxa/Makefile
> --- linux-2.5.27/arch/arm/mach-pxa/Makefile	Sat Jul 20 13:11:21 2002
> +++ thunder-2.5/arch/arm/mach-pxa/Makefile	Mon Jul 22 06:21:07 2002
> @@ -12,7 +12,7 @@
>  obj-n :=
>  obj-  :=
>  
> -export-objs := generic.o irq.o dma.o sa1111.o
> +export-objs := generic.o dma.o

sa1111 is waiting to appear from Nico.

>  # Common support (must be linked before board specific support)
>  obj-y += generic.o irq.o dma.o
> diff -Nur linux-2.5.27/arch/arm/mach-sa1100/Makefile thunder-2.5/arch/arm/mach-sa1100/Makefile
> --- linux-2.5.27/arch/arm/mach-sa1100/Makefile	Sat Jul 20 13:12:31 2002
> +++ thunder-2.5/arch/arm/mach-sa1100/Makefile	Mon Jul 22 06:21:37 2002
> @@ -11,8 +11,7 @@
>  obj-  :=
>  led-y := leds.o
>  
> -export-objs :=	dma.o generic.o irq.o pcipool.o sa1111.o sa1111-pcibuf.o \
> -		usb_ctl.o usb_recv.o usb_send.o pm.o
> +export-objs :=	dma.o generic.o pcipool.o sa1111.o sa1111-pcibuf.o pm.o

USB stuff pending GregKH/myself doing some evaluation work.

>  # This needs to be cleaned up.  We probably need to have SA1100
>  # and SA1110 config symbols.

I'm busy with serial stuff at the moment and haven't had time to push any
ARM stuff to Linus since .25; don't expect me to do anything with this
for a while.

-- 
Russell King (rmk@arm.linux.org.uk)                The developer of ARM Linux
             http://www.arm.linux.org.uk/personal/aboutme.html


      reply	other threads:[~2002-07-22 12:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-22 12:47 [PATCH][2.5] Get export-objs right Lightweight patch manager
2002-07-22 12:55 ` Russell King [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020722135532.C2838@flint.arm.linux.org.uk \
    --to=rmk@arm.linux.org.uk \
    --cc=kai@tp1.ruhr-uni-bochum.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=patch@luckynet.dynu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox