mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Announce: modutils 2.4.11 is available
@ 2001-11-11  5:55 Keith Owens
  2001-11-11 17:08 ` Tom Rini
  2001-11-13 18:46 ` Matthew Jacob
  0 siblings, 2 replies; 4+ messages in thread
From: Keith Owens @ 2001-11-11  5:55 UTC (permalink / raw)
  To: linux-kernel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Content-Type: text/plain; charset=us-ascii

ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/modutils/v2.4

modutils-2.4.11.tar.gz          Source tarball, includes RPM spec file
modutils-2.4.11-1.src.rpm       As above, in SRPM format
modutils-2.4.11-1.i386.rpm      Compiled with gcc 2.96 20000731,
				glibc 2.2.2.
patch-modutils-2.4.11.gz        Patch from modutils 2.4.10 to 2.4.11.

Related kernel patches.

patch-2.4.2-persistent.gz       Adds persistent data and generic string
				support to kernel 2.4.2 onwards.  Optional.

Changelog extract

	* Add taint printing to lsmod.
	* PPC64 support.  Alan Modra, Anton Blanchard.  Tweaked by Keith Owens.
	* HPPA64 configure fix.  Reported by Helge Deller, different fix by
	  Keith Owens.
	* PNPBIOS support.  Andrey Panin.
	* Add __sparc_dot_ to depmod.  Alex Buell.
	* Add generic __dot_ support to depmod.  Keith Owens.

Sparc and ia64 rpms to follow later.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.4 (GNU/Linux)
Comment: Exmh version 2.1.1 10/15/1999

iD8DBQE77hLQi4UHNye0ZOoRAjK3AKCmLVgxU1NIU+diZ1eOhy0XYj3LaACdG+zl
s+An31n7UFc6wSKpmUPf710=
=4M20
-----END PGP SIGNATURE-----


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

* Re: Announce: modutils 2.4.11 is available
  2001-11-11  5:55 Announce: modutils 2.4.11 is available Keith Owens
@ 2001-11-11 17:08 ` Tom Rini
  2001-11-13 18:46 ` Matthew Jacob
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2001-11-11 17:08 UTC (permalink / raw)
  To: Keith Owens; +Cc: linux-kernel

On Sun, Nov 11, 2001 at 04:55:29PM +1100, Keith Owens wrote:

> Changelog extract
> 
> 	* Add taint printing to lsmod.
> 	* PPC64 support.  Alan Modra, Anton Blanchard.  Tweaked by Keith Owens.

This (and all PPC support) won't compile now.  There's an extra #endif
in include/elf_ppc64.h

-- 
Tom Rini (TR1265)
http://gate.crashing.org/~trini/

--- modutils-2.4.11/include/elf_ppc64.h.orig	Sun Nov 11 10:03:12 2001
+++ modutils-2.4.11/include/elf_ppc64.h	Sun Nov 11 10:03:35 2001
@@ -85,5 +85,3 @@
 #define R_PPC64_GNU_VTINHERIT   R_PPC_GNU_VTINHERIT
 #define R_PPC64_GNU_VTENTRY     R_PPC_GNU_VTENTRY
 #endif	/* R_PPC64_ADDR64 */
-
-#endif

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

* Re: Announce: modutils 2.4.11 is available
  2001-11-11  5:55 Announce: modutils 2.4.11 is available Keith Owens
  2001-11-11 17:08 ` Tom Rini
@ 2001-11-13 18:46 ` Matthew Jacob
  2001-11-13 22:48   ` Keith Owens
  1 sibling, 1 reply; 4+ messages in thread
From: Matthew Jacob @ 2001-11-13 18:46 UTC (permalink / raw)
  To: Keith Owens; +Cc: linux-kernel


FWIW:

 obj_gpl_license.c
gcc -O2 -Wall -I./../include -D_GNU_SOURCE  -DCONFIG_ROOT_CHECK_OFF=0
-DCOMMON_3264 -DELF_MACHINE_H='"elf_ppc64.h"' -DARCH_ppc64 -DONLY_64 -c -o
obj_ppc64_64.o obj_ppc64.c
In file included from ../include/obj.h:34,
                 from obj_ppc64.c:25:
../include/elf_ppc64.h:89: unbalanced `#endif'
make[1]: *** [obj_ppc64_64.o] Error 1
make[1]: Leaving directory `/usr/src/modutils-2.4.11/obj'
make: *** [all] Error 2


PPC, with older (2.2) kernel




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

* Re: Announce: modutils 2.4.11 is available
  2001-11-13 18:46 ` Matthew Jacob
@ 2001-11-13 22:48   ` Keith Owens
  0 siblings, 0 replies; 4+ messages in thread
From: Keith Owens @ 2001-11-13 22:48 UTC (permalink / raw)
  To: mjacob; +Cc: linux-kernel

On Tue, 13 Nov 2001 10:46:05 -0800 (PST), 
Matthew Jacob <mjacob@feral.com> wrote:
>gcc -O2 -Wall -I./../include -D_GNU_SOURCE  -DCONFIG_ROOT_CHECK_OFF=0
>-DCOMMON_3264 -DELF_MACHINE_H='"elf_ppc64.h"' -DARCH_ppc64 -DONLY_64 -c -o
>obj_ppc64_64.o obj_ppc64.c
>In file included from ../include/obj.h:34,
>                 from obj_ppc64.c:25:
>../include/elf_ppc64.h:89: unbalanced `#endif'
>make[1]: *** [obj_ppc64_64.o] Error 1

My fault, remove the last two lines of include/elf_ppc64.h.


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

end of thread, other threads:[~2001-11-13 22:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-11  5:55 Announce: modutils 2.4.11 is available Keith Owens
2001-11-11 17:08 ` Tom Rini
2001-11-13 18:46 ` Matthew Jacob
2001-11-13 22:48   ` Keith Owens

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

all inboxes | Powered by JetHome®