- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
850 B
Diff
28 lines
850 B
Diff
From c640d9011a8330ebaad501784fb0ee1ce5e7a5ef Mon Sep 17 00:00:00 2001
|
|
From: Rod Smith <rodsmith@rodsbooks.com>
|
|
Date: Sat, 16 Apr 2022 09:32:04 -0400
|
|
Subject: [PATCH] Updated guid.cc to deal with minor change in libuuid
|
|
|
|
Upstream-Status: Backport [https://sourceforge.net/p/gptfdisk/code/ci/6a8416cbd12d55f882bb751993b94f72d338d96f/]
|
|
Signed-off-by: Peter Bergin <peter@berginkonsult.se>
|
|
---
|
|
guid.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/guid.cc b/guid.cc
|
|
index 1e73ab7..d3e4fd5 100644
|
|
--- a/guid.cc
|
|
+++ b/guid.cc
|
|
@@ -141,7 +141,7 @@ void GUIDData::Zero(void) {
|
|
void GUIDData::Randomize(void) {
|
|
int i, uuidGenerated = 0;
|
|
|
|
-#ifdef _UUID_UUID_H
|
|
+#if defined (_UUID_UUID_H) || defined (_UL_LIBUUID_UUID_H)
|
|
uuid_generate(uuidData);
|
|
ReverseBytes(&uuidData[0], 4);
|
|
ReverseBytes(&uuidData[4], 2);
|
|
--
|
|
2.34.1
|
|
|