20 lines
685 B
Diff
20 lines
685 B
Diff
--- kexec-tools-1.101/kexec/arch/i386/kexec-multiboot-x86.c.orig 2006-08-28 14:32:50.000000000 -0400
|
|
+++ kexec-tools-1.101/kexec/arch/i386/kexec-multiboot-x86.c 2006-08-28 14:34:29.000000000 -0400
|
|
@@ -47,7 +47,6 @@
|
|
#include <getopt.h>
|
|
#include <elf.h>
|
|
#include <boot/elf_boot.h>
|
|
-#include <asm/page.h>
|
|
#include <ip_checksum.h>
|
|
#include "../../kexec.h"
|
|
#include "../../kexec-elf.h"
|
|
@@ -342,7 +341,7 @@
|
|
/* Pick the next aligned spot to load it in */
|
|
freespace = add_buffer(info,
|
|
buf, mod_size, mod_size,
|
|
- PAGE_SIZE, 0, 0xffffffffUL, 1);
|
|
+ getpagesize(), 0, 0xffffffffUL, 1);
|
|
|
|
/* Add the module command line */
|
|
sprintf(mod_clp, "%s", mod_command_line);
|