Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eb2bce7f5e7ac1ca6da434461217fadf3c688d2c
Commit:     eb2bce7f5e7ac1ca6da434461217fadf3c688d2c
Parent:     180e53a71f78e72a244deb65140928d4f3d72385
Author:     Ivan Kokshaysky <[EMAIL PROTECTED]>
AuthorDate: Sun May 6 14:50:37 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon May 7 12:12:58 2007 -0700

    ALPHA: fix BOOTP image creation
    
    Files:
    
    arch/alpha/boot/bootpz.c
    
        Create a dummy "__kmalloc()" to satisfy the loader; never called.
    
    arch/alpha/boot/tools/objstrip.c
    
        Remove an include that is now (2.6.x) unnecessary.
    
    Signed-off-by: Jay Estabrook <[EMAIL PROTECTED]>
    Signed-off-by: Ivan Kokshaysky <[EMAIL PROTECTED]>
    Cc: Richard Henderson <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/alpha/boot/bootpz.c         |    6 ++++++
 arch/alpha/boot/tools/objstrip.c |    1 -
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/arch/alpha/boot/bootpz.c b/arch/alpha/boot/bootpz.c
index 4307bde..1036b51 100644
--- a/arch/alpha/boot/bootpz.c
+++ b/arch/alpha/boot/bootpz.c
@@ -467,3 +467,9 @@ start_kernel(void)
 #endif
        runkernel();
 }
+
+ /* dummy function, should never be called. */
+void *__kmalloc(size_t size, gfp_t flags)
+{
+       return (void *)NULL;
+}
diff --git a/arch/alpha/boot/tools/objstrip.c b/arch/alpha/boot/tools/objstrip.c
index 67beb1b..96154e7 100644
--- a/arch/alpha/boot/tools/objstrip.c
+++ b/arch/alpha/boot/tools/objstrip.c
@@ -25,7 +25,6 @@
 #include <linux/a.out.h>
 #include <linux/coff.h>
 #include <linux/param.h>
-#include <linux/string.h>
 #ifdef __ELF__
 # include <linux/elf.h>
 #endif
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to