diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch | 38 | ||||
-rw-r--r-- | meta/recipes-devtools/syslinux/syslinux_6.01.bb | 3 |
2 files changed, 40 insertions, 1 deletions
diff --git a/meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch b/meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch new file mode 100644 index 0000000000..6b695791cd --- /dev/null +++ b/meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | syslinux-native: fix parallel building issue | ||
2 | |||
3 | There might be an error when parallel build: | ||
4 | |||
5 | [snip] | ||
6 | cp: cannot create directory `tmp/sysroots/x86_64-linux/usr/share/ | ||
7 | syslinux/com32/include/gplinclude': No such file or directory | ||
8 | make[4]: *** [install] Error 1 | ||
9 | make[3]: *** [gpllib] Error 2 | ||
10 | [snip] | ||
11 | |||
12 | This is a potential issue. In ${S}/com32/gpllib/Makefile file, | ||
13 | install target wants to copy $(SRC)/../gplinclude to | ||
14 | $(INSTALLROOT)$(COM32DIR)/include/ directory, but in ${S}/com32/lib/Makefile | ||
15 | file, the install target will remove $(INSTALLROOT)$(COM32DIR)/include | ||
16 | directory. We need to do com32/lib first. | ||
17 | |||
18 | The patch make com32/gpllib depends on com32/lib to fix this issue. | ||
19 | |||
20 | Upstream-Status: Pending | ||
21 | |||
22 | Signed-off-by: Chong Lu <Chong.Lu@windriver.com> | ||
23 | --- | ||
24 | com32/Makefile | 1 + | ||
25 | 1 file changed, 1 insertion(+) | ||
26 | |||
27 | diff --git a/com32/Makefile b/com32/Makefile | ||
28 | index 7ea1b01..9a1721b 100644 | ||
29 | --- a/com32/Makefile | ||
30 | +++ b/com32/Makefile | ||
31 | @@ -20,3 +20,4 @@ modules: lib libutil gpllib | ||
32 | rosh: lib libutil | ||
33 | samples: libutil elflink/ldlinux | ||
34 | sysdump: libupload gpllib | ||
35 | +gpllib: lib | ||
36 | -- | ||
37 | 1.7.9.5 | ||
38 | |||
diff --git a/meta/recipes-devtools/syslinux/syslinux_6.01.bb b/meta/recipes-devtools/syslinux/syslinux_6.01.bb index 1af6806100..89204b03ae 100644 --- a/meta/recipes-devtools/syslinux/syslinux_6.01.bb +++ b/meta/recipes-devtools/syslinux/syslinux_6.01.bb | |||
@@ -12,7 +12,8 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/6.xx/syslinux-${PV}.tar | |||
12 | file://0001-movebits-Add-SMT_TERMINAL-a-last-resort-region-type.patch \ | 12 | file://0001-movebits-Add-SMT_TERMINAL-a-last-resort-region-type.patch \ |
13 | file://0002-memscan-build-a-linked-list-of-memory-scanners.patch \ | 13 | file://0002-memscan-build-a-linked-list-of-memory-scanners.patch \ |
14 | file://0003-PXELINUX-Add-bios-memscan-function.patch \ | 14 | file://0003-PXELINUX-Add-bios-memscan-function.patch \ |
15 | file://0004-pxe-use-bios_fbm-and-real_base_mem-to-calculate-free.patch" | 15 | file://0004-pxe-use-bios_fbm-and-real_base_mem-to-calculate-free.patch \ |
16 | file://syslinux-fix-parallel-building-issue.patch" | ||
16 | 17 | ||
17 | SRC_URI[md5sum] = "6945ee89e29119d459baed4937bbc534" | 18 | SRC_URI[md5sum] = "6945ee89e29119d459baed4937bbc534" |
18 | SRC_URI[sha256sum] = "83a04cf81e6a46b80ee5a321926eea095af3498b04317e3674b46c125c7a5b43" | 19 | SRC_URI[sha256sum] = "83a04cf81e6a46b80ee5a321926eea095af3498b04317e3674b46c125c7a5b43" |