diff options
Diffstat (limited to 'meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch')
-rw-r--r-- | meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch b/meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch index f1d01fa43c..b026eba5ad 100644 --- a/meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch +++ b/meta/recipes-devtools/syslinux/syslinux/0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From efce87e5ab98664c57e5f4e3955a2f3747df5737 Mon Sep 17 00:00:00 2001 | 1 | From acfc8214d3d60b7e251ae66a59b81cdd1ff7a6dc Mon Sep 17 00:00:00 2001 |
2 | From: Robert Yang <liezhi.yang@windriver.com> | 2 | From: Robert Yang <liezhi.yang@windriver.com> |
3 | Date: Fri, 2 Jan 2015 12:26:46 +0800 | 3 | Date: Fri, 2 Jan 2015 12:26:46 +0800 |
4 | Subject: [PATCH] libinstaller/syslinuxext: implement syslinux_patch_bootsect() | 4 | Subject: [PATCH] libinstaller/syslinuxext: implement syslinux_patch_bootsect() |
@@ -22,7 +22,7 @@ Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> | |||
22 | 3 files changed, 176 insertions(+), 165 deletions(-) | 22 | 3 files changed, 176 insertions(+), 165 deletions(-) |
23 | 23 | ||
24 | diff --git a/extlinux/Makefile b/extlinux/Makefile | 24 | diff --git a/extlinux/Makefile b/extlinux/Makefile |
25 | index 1721ee54..62a49728 100644 | 25 | index 1721ee5..62a4972 100644 |
26 | --- a/extlinux/Makefile | 26 | --- a/extlinux/Makefile |
27 | +++ b/extlinux/Makefile | 27 | +++ b/extlinux/Makefile |
28 | @@ -32,7 +32,8 @@ SRCS = main.c \ | 28 | @@ -32,7 +32,8 @@ SRCS = main.c \ |
@@ -36,7 +36,7 @@ index 1721ee54..62a49728 100644 | |||
36 | 36 | ||
37 | .SUFFIXES: .c .o .i .s .S | 37 | .SUFFIXES: .c .o .i .s .S |
38 | diff --git a/extlinux/main.c b/extlinux/main.c | 38 | diff --git a/extlinux/main.c b/extlinux/main.c |
39 | index ebff7eae..9add50fb 100644 | 39 | index ebff7ea..9add50f 100644 |
40 | --- a/extlinux/main.c | 40 | --- a/extlinux/main.c |
41 | +++ b/extlinux/main.c | 41 | +++ b/extlinux/main.c |
42 | @@ -62,6 +62,7 @@ | 42 | @@ -62,6 +62,7 @@ |
@@ -244,7 +244,7 @@ index ebff7eae..9add50fb 100644 | |||
244 | /* Construct the boot file map */ | 244 | /* Construct the boot file map */ |
245 | 245 | ||
246 | diff --git a/libinstaller/syslinuxext.c b/libinstaller/syslinuxext.c | 246 | diff --git a/libinstaller/syslinuxext.c b/libinstaller/syslinuxext.c |
247 | index bb54cefc..9ae82884 100644 | 247 | index bb54cef..9ae8288 100644 |
248 | --- a/libinstaller/syslinuxext.c | 248 | --- a/libinstaller/syslinuxext.c |
249 | +++ b/libinstaller/syslinuxext.c | 249 | +++ b/libinstaller/syslinuxext.c |
250 | @@ -1,7 +1,178 @@ | 250 | @@ -1,7 +1,178 @@ |
@@ -426,6 +426,3 @@ index bb54cefc..9ae82884 100644 | |||
426 | + set_32(&sbs->bsHiddenSecs, geo.start); | 426 | + set_32(&sbs->bsHiddenSecs, geo.start); |
427 | } | 427 | } |
428 | 428 | ||
429 | -- | ||
430 | 2.17.1 | ||
431 | |||