public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [KBUILD] fix external module install path
@ 2007-05-07 21:38 Eric Sandeen
  2007-05-07 21:45 ` Eric Sandeen
  2008-01-01 12:45 ` Sam Ravnborg
  0 siblings, 2 replies; 5+ messages in thread
From: Eric Sandeen @ 2007-05-07 21:38 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: sam

Installing external modules is supposed to put them in some path
under /lib/modules/<version>/extra/subdir/, but this change:
http://linux.bkbits.net:8080/linux-2.6/?PAGE=cset&REV=1.1982.9.23
makes them go under /lib/modules/<version>/extrasubdir

(for example, make M=fs/ext3 modules_install puts ext3.ko in 
/lib/modules/<version>/extrafs/ext3.ko)

Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Index: linux-2.6.21/scripts/Makefile.modinst
===================================================================
--- linux-2.6.21.orig/scripts/Makefile.modinst
+++ linux-2.6.21/scripts/Makefile.modinst
@@ -21,7 +21,7 @@ quiet_cmd_modules_install = INSTALL $@
 
 # Modules built outside the kernel source tree go into extra by default
 INSTALL_MOD_DIR ?= extra
-ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
+ext-mod-dir = $(INSTALL_MOD_DIR)/$(subst $(KBUILD_EXTMOD),,$(@D))
 
 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
 



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] [KBUILD] fix external module install path
  2007-05-07 21:38 [PATCH] [KBUILD] fix external module install path Eric Sandeen
@ 2007-05-07 21:45 ` Eric Sandeen
  2007-05-07 22:15   ` Eric Sandeen
  2008-01-01 12:45 ` Sam Ravnborg
  1 sibling, 1 reply; 5+ messages in thread
From: Eric Sandeen @ 2007-05-07 21:45 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: Linux Kernel Mailing List, sam

Eric Sandeen wrote:
> Installing external modules is supposed to put them in some path
> under /lib/modules/<version>/extra/subdir/, but this change:
> http://linux.bkbits.net:8080/linux-2.6/?PAGE=cset&REV=1.1982.9.23
> makes them go under /lib/modules/<version>/extrasubdir

er, hang on.  Now it's not doing it ;-)  stay tuned.

Sorry... I really did get an "extrafs/" directory somehow :)

-Eric

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] [KBUILD] fix external module install path
  2007-05-07 21:45 ` Eric Sandeen
@ 2007-05-07 22:15   ` Eric Sandeen
  0 siblings, 0 replies; 5+ messages in thread
From: Eric Sandeen @ 2007-05-07 22:15 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: sam, kbuid-devel

Eric Sandeen wrote:
> Eric Sandeen wrote:
>> Installing external modules is supposed to put them in some path
>> under /lib/modules/<version>/extra/subdir/, but this change:
>> http://linux.bkbits.net:8080/linux-2.6/?PAGE=cset&REV=1.1982.9.23
>> makes them go under /lib/modules/<version>/extrasubdir
> 
> er, hang on.  Now it's not doing it ;-)  stay tuned.
> 
> Sorry... I really did get an "extrafs/" directory somehow :)

Urgh, I can't figure out what tickles it reliably.

There is at least another buglet (?) though, if you don't put a slash on
the end of your M=, you lose the subdir path.

[root@marathon-01 linux-2.6.18.x86_64]# make M=fs/ext3/ modules_install
  INSTALL fs/ext3/ext3.ko
  DEPMOD  2.6.18-8.el5
[root@marathon-01 linux-2.6.18.x86_64]# find /lib/modules/`uname
-r`/extra* -name ext3.ko
/lib/modules/2.6.18-8.el5/extra/fs/ext3/ext3.ko

[root@marathon-01 linux-2.6.18.x86_64]# make M=fs/ext3 modules_install
  INSTALL fs/ext3/ext3.ko
  DEPMOD  2.6.18-8.el5
[root@marathon-01 linux-2.6.18.x86_64]# find /lib/modules/`uname
-r`/extra* -name ext3.ko
/lib/modules/2.6.18-8.el5/extra/fs/ext3/ext3.ko
/lib/modules/2.6.18-8.el5/extra/ext3.ko

I'm confused.  Maybe Sam knows how to fix it... :)

-Eric

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] [KBUILD] fix external module install path
  2007-05-07 21:38 [PATCH] [KBUILD] fix external module install path Eric Sandeen
  2007-05-07 21:45 ` Eric Sandeen
@ 2008-01-01 12:45 ` Sam Ravnborg
  2008-01-01 17:10   ` Eric Sandeen
  1 sibling, 1 reply; 5+ messages in thread
From: Sam Ravnborg @ 2008-01-01 12:45 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: Linux Kernel Mailing List, linux-kbuild

On Mon, May 07, 2007 at 04:38:03PM -0500, Eric Sandeen wrote:
> Installing external modules is supposed to put them in some path
> under /lib/modules/<version>/extra/subdir/, but this change:
> http://linux.bkbits.net:8080/linux-2.6/?PAGE=cset&REV=1.1982.9.23
> makes them go under /lib/modules/<version>/extrasubdir
> 
> (for example, make M=fs/ext3 modules_install puts ext3.ko in 
> /lib/modules/<version>/extrafs/ext3.ko)
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> 
> Index: linux-2.6.21/scripts/Makefile.modinst
> ===================================================================
> --- linux-2.6.21.orig/scripts/Makefile.modinst
> +++ linux-2.6.21/scripts/Makefile.modinst
> @@ -21,7 +21,7 @@ quiet_cmd_modules_install = INSTALL $@
>  
>  # Modules built outside the kernel source tree go into extra by default
>  INSTALL_MOD_DIR ?= extra
> -ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
> +ext-mod-dir = $(INSTALL_MOD_DIR)/$(subst $(KBUILD_EXTMOD),,$(@D))
>  
>  modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))

Hi Eric.

Took a look at this now and fixed it like this.
Let me know if you see other issues.

[I know this is more than 6 months ago you reported it - sorry]

	Sam

>From 9af97c5f91e7dd4996b501a19b5a128b1600d511 Mon Sep 17 00:00:00 2001
From: Sam Ravnborg <sam@ravnborg.org>
Date: Tue, 1 Jan 2008 13:40:28 +0100
Subject: [PATCH] kbuild: fix installing external modules

Eric Sandeen <sandeen@redhat.com> reported:
  Installing external modules is supposed to put them in some path
  under /lib/modules/<version>/extra/subdir/, but this change:
  http://linux.bkbits.net:8080/linux-2.6/?PAGE=cset&REV=1.1982.9.23
  makes them go under /lib/modules/<version>/extrasubdir

 (for example, make M=fs/ext3 modules_install puts ext3.ko in
 /lib/modules/<version>/extrafs/ext3.ko)

This was the case only when specifying a trailing slash to M=..

Fixed by removing trailing slash if present so
we correctly match dir part of target.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Eric Sandeen <sandeen@redhat.com>
---
 scripts/Makefile.modinst |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/Makefile.modinst b/scripts/Makefile.modinst
index f0ff248..efa5d94 100644
--- a/scripts/Makefile.modinst
+++ b/scripts/Makefile.modinst
@@ -21,7 +21,7 @@ quiet_cmd_modules_install = INSTALL $@
 
 # Modules built outside the kernel source tree go into extra by default
 INSTALL_MOD_DIR ?= extra
-ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
+ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
 
 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
 
-- 
1.5.3.7.1112.g9758e


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] [KBUILD] fix external module install path
  2008-01-01 12:45 ` Sam Ravnborg
@ 2008-01-01 17:10   ` Eric Sandeen
  0 siblings, 0 replies; 5+ messages in thread
From: Eric Sandeen @ 2008-01-01 17:10 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: Linux Kernel Mailing List, linux-kbuild

Sam Ravnborg wrote:

> Hi Eric.
> 
> Took a look at this now and fixed it like this.
> Let me know if you see other issues.
> 
> [I know this is more than 6 months ago you reported it - sorry]
> 
> 	Sam

Wow, blast from the past; if you'd done it a bit earlier it would have
been in the same year at least!  *grin*

Anyway, thanks for fixing!  This just bit me the other day, actually, so
will be nice to have fixed.

-Eric

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-01-01 17:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-07 21:38 [PATCH] [KBUILD] fix external module install path Eric Sandeen
2007-05-07 21:45 ` Eric Sandeen
2007-05-07 22:15   ` Eric Sandeen
2008-01-01 12:45 ` Sam Ravnborg
2008-01-01 17:10   ` Eric Sandeen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox