blob: 0a5cb0d910d36b749f40530af6eff35fa38cb571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Well, since asm/page.h has been removed from make headers_install,
# we replace it with sys/user.h
# Copyright 2010, mario <mario@slackverse.org>
--- mbootpack-0.6a/buildimage.c.ORIG 2008-12-09 14:10:59.000000000 +0100
+++ mbootpack-0.6a/buildimage.c 2010-06-18 18:15:11.130697044 +0200
@@ -38,7 +38,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
-#include <asm/page.h>
+#include <sys/user.h>
#include "mbootpack.h"
#include "mb_header.h"
--- mbootpack-0.6a/mbootpack.c.ORIG 2008-12-09 14:10:59.000000000 +0100
+++ mbootpack-0.6a/mbootpack.c 2010-06-18 18:15:21.709696839 +0200
@@ -43,7 +43,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
-#include <asm/page.h>
+#include <sys/user.h>
/* From GNU GRUB */
#include "mb_header.h"
--- mbootpack-0.6a/setup.S.ORIG 2008-12-09 14:10:59.000000000 +0100
+++ mbootpack-0.6a/setup.S 2010-06-18 18:15:33.899696996 +0200
@@ -82,7 +82,7 @@
#include <linux/compile.h>
#include <asm/boot.h>
#include <asm/e820.h>
-#include <asm/page.h>
+#include <sys/user.h>
*/
/* Definitions that should have come from these includes */
|