Your message dated Tue, 07 Apr 2009 01:03:04 -0500
with message-id <[email protected]>
and subject line Re: Bug#517292: Add support for new-style Linux kernel 
architecture names
has caused the Debian Bug report #517292,
regarding Add support for new-style Linux kernel architecture names
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
517292: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517292
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
package: kernel-package
version: 11.001
tags: patch
severity: wishlist

n.b.: This patch needs to add a check for when the x86 architecture
merger happened (i.e., if it's after 2.6.24, we need to use
KERNEL_ARCH=x86, before that, i386 or x86_64).  This was a quick kludge
that I threw together so make-kpkg would still be useful on modern
kernels.

Index: kernel-package/ruleset/misc/kernel_arch.mk
===================================================================
--- kernel-package.orig/ruleset/misc/kernel_arch.mk
+++ kernel-package/ruleset/misc/kernel_arch.mk
@@ -38,8 +38,11 @@
 # Apparently, DEB_HOST_ARCH_CPU does not match what the kernel calls this. 
 # However, DEB_HOST_GNU_CPU does. Anyway, we have to hack around it
 KERNEL_ARCH:=$(architecture)
+ifeq ($(architecture), i386)
+  KERNEL_ARCH:=x86
+endif
 ifeq ($(architecture), amd64)
-  KERNEL_ARCH:=x86_64
+  KERNEL_ARCH:=x86
 endif
 ifeq ($(architecture), mipsel)
   KERNEL_ARCH:=mips
Index: kernel-package/ruleset/targets/headers.mk
===================================================================
--- kernel-package.orig/ruleset/targets/headers.mk
+++ kernel-package/ruleset/targets/headers.mk
@@ -76,6 +76,9 @@ install/$(h_package):
        test ! -e arch/$(KERNEL_ARCH)/Makefile.cpu ||                           
  \
                                 $(install_file) 
arch/$(KERNEL_ARCH)/Makefile.cpu  \
                                                      
$(SRCDIR)/arch/$(KERNEL_ARCH)
+       test ! -e arch/$(KERNEL_ARCH)/Makefile_32.cpu ||                        
  \
+                                $(install_file) 
arch/$(KERNEL_ARCH)/Makefile_32.cpu \
+                                                     
$(SRCDIR)/arch/$(KERNEL_ARCH)
        test ! -e Rules.make     || $(install_file) Rules.make     $(SRCDIR)
        test ! -e Module.symvers || $(install_file) Module.symvers $(SRCDIR)
 ifneq ($(strip $(int_follow_symlinks_in_src)),)



--- End Message ---
--- Begin Message ---
Version: 11.012
thanks
Hi,

        This issue was fixed differently in version 11.012.

        manoj
-- 
Take what you can use and let the rest go by. Ken Kesey
Manoj Srivastava <[email protected]> <http://www.golden-gryphon.com/>  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


--- End Message ---

Reply via email to