* [PATCH 0/1] ovmf: fix do_compile error when len(tmp)=410
@ 2017-09-11 7:29 Dengke Du
2017-09-11 7:29 ` [PATCH 1/1] " Dengke Du
0 siblings, 1 reply; 4+ messages in thread
From: Dengke Du @ 2017-09-11 7:29 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 8b4f16a9cbbaf521461f699b7264fac2ac872581:
mesa-gl: Fix build after recent mesa PACKAGECONFIG changes (2017-09-05 15:01:02 +0100)
are available in the git repository at:
https://github.com/DengkeDu/openembedded-core.git dengke/fix-ovmf-do-compile-error-when-enable-long-file-path
https://github.com//tree/dengke/fix-ovmf-do-compile-error-when-enable-long-file-path
Dengke Du (1):
ovmf: fix do_compile error when len(tmp)=410
.../ovmf/0004-ovmf-enable-long-path-file.patch | 28 ++++++++++++++++++++++
meta/recipes-core/ovmf/ovmf_git.bb | 3 ++-
2 files changed, 30 insertions(+), 1 deletion(-)
create mode 100644 meta/recipes-core/ovmf/ovmf/0004-ovmf-enable-long-path-file.patch
--
2.8.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] ovmf: fix do_compile error when len(tmp)=410
2017-09-11 7:29 [PATCH 0/1] ovmf: fix do_compile error when len(tmp)=410 Dengke Du
@ 2017-09-11 7:29 ` Dengke Du
2017-09-11 10:51 ` Burton, Ross
0 siblings, 1 reply; 4+ messages in thread
From: Dengke Du @ 2017-09-11 7:29 UTC (permalink / raw)
To: openembedded-core
[YOCTO #11354]
Signed-off-by: Dengke Du <dengke.du@windriver.com>
---
.../ovmf/0004-ovmf-enable-long-path-file.patch | 28 ++++++++++++++++++++++
meta/recipes-core/ovmf/ovmf_git.bb | 3 ++-
2 files changed, 30 insertions(+), 1 deletion(-)
create mode 100644 meta/recipes-core/ovmf/ovmf/0004-ovmf-enable-long-path-file.patch
diff --git a/meta/recipes-core/ovmf/ovmf/0004-ovmf-enable-long-path-file.patch b/meta/recipes-core/ovmf/ovmf/0004-ovmf-enable-long-path-file.patch
new file mode 100644
index 0000000..fbb95ed
--- /dev/null
+++ b/meta/recipes-core/ovmf/ovmf/0004-ovmf-enable-long-path-file.patch
@@ -0,0 +1,28 @@
+From a07eef024089de6bc1cfe4effa4f04cc765d00eb Mon Sep 17 00:00:00 2001
+From: Dengke Du <dengke.du@windriver.com>
+Date: Mon, 11 Sep 2017 02:21:55 -0400
+Subject: [PATCH] ovmf: enable long path file
+
+Upstream-Status: Pending
+
+Signed-off-by: Dengke Du <dengke.du@windriver.com>
+---
+ BaseTools/Source/C/Common/CommonLib.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/BaseTools/Source/C/Common/CommonLib.h b/BaseTools/Source/C/Common/CommonLib.h
+index 2041b89..279cf59 100644
+--- a/BaseTools/Source/C/Common/CommonLib.h
++++ b/BaseTools/Source/C/Common/CommonLib.h
+@@ -19,7 +19,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+ #include <Common/BuildVersion.h>
+ #define PRINTED_GUID_BUFFER_SIZE 37 // including null-termination
+
+-#define MAX_LONG_FILE_PATH 500
++#define MAX_LONG_FILE_PATH 800
+
+ #ifdef __cplusplus
+ extern "C" {
+--
+2.8.1
+
diff --git a/meta/recipes-core/ovmf/ovmf_git.bb b/meta/recipes-core/ovmf/ovmf_git.bb
index 1872c95..50c01aa 100644
--- a/meta/recipes-core/ovmf/ovmf_git.bb
+++ b/meta/recipes-core/ovmf/ovmf_git.bb
@@ -11,10 +11,11 @@ PACKAGECONFIG ??= ""
PACKAGECONFIG[secureboot] = ",,,"
SRC_URI = "git://github.com/tianocore/edk2.git;branch=master \
+ file://0001-ia32-Dont-use-pie.patch \
file://0002-ovmf-update-path-to-native-BaseTools.patch \
file://0003-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch \
+ file://0004-ovmf-enable-long-path-file.patch \
file://VfrCompile-increase-path-length-limit.patch \
- file://0001-ia32-Dont-use-pie.patch \
file://no-stack-protector-all-archs.patch \
"
UPSTREAM_VERSION_UNKNOWN = "1"
--
2.8.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] ovmf: fix do_compile error when len(tmp)=410
2017-09-11 7:29 ` [PATCH 1/1] " Dengke Du
@ 2017-09-11 10:51 ` Burton, Ross
2017-09-12 0:55 ` Dengke Du
0 siblings, 1 reply; 4+ messages in thread
From: Burton, Ross @ 2017-09-11 10:51 UTC (permalink / raw)
To: Dengke Du; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
On 11 September 2017 at 08:29, Dengke Du <dengke.du@windriver.com> wrote:
> +-#define MAX_LONG_FILE_PATH 500
> ++#define MAX_LONG_FILE_PATH 800
>
Making this limit a little bigger seems like a great way to hit it with a
slightly longer path. The other patch
(VfrCompile-increase-path-length-limit.patch)
increases it to 1023 which seems to be a more future-proof solution (and
consistent).
Ross
[-- Attachment #2: Type: text/html, Size: 1055 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] ovmf: fix do_compile error when len(tmp)=410
2017-09-11 10:51 ` Burton, Ross
@ 2017-09-12 0:55 ` Dengke Du
0 siblings, 0 replies; 4+ messages in thread
From: Dengke Du @ 2017-09-12 0:55 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 562 bytes --]
Ok, I will resend it with 1023.
On 2017年09月11日 18:51, Burton, Ross wrote:
> On 11 September 2017 at 08:29, Dengke Du <dengke.du@windriver.com
> <mailto:dengke.du@windriver.com>> wrote:
>
> +-#define MAX_LONG_FILE_PATH 500
> ++#define MAX_LONG_FILE_PATH 800
>
>
> Making this limit a little bigger seems like a great way to hit it
> with a slightly longer path. The other patch
> (VfrCompile-increase-path-length-limit.patch) increases it to 1023
> which seems to be a more future-proof solution (and consistent).
>
> Ross
[-- Attachment #2: Type: text/html, Size: 1958 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-09-12 0:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-11 7:29 [PATCH 0/1] ovmf: fix do_compile error when len(tmp)=410 Dengke Du
2017-09-11 7:29 ` [PATCH 1/1] " Dengke Du
2017-09-11 10:51 ` Burton, Ross
2017-09-12 0:55 ` Dengke Du
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox