- 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)
25 lines
658 B
Diff
25 lines
658 B
Diff
From c297f5b89d7c8e98ac98e1d9a7506df6db6fc025 Mon Sep 17 00:00:00 2001
|
|
From: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
Date: Fri, 26 Feb 2021 10:17:52 +0000
|
|
Subject: [PATCH] Don't encode the distro from /etc/os-release into the
|
|
binaries.
|
|
|
|
Upstream-Status: Pending
|
|
RP 2021/2/26
|
|
---
|
|
meson.build | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index e416cc7..ee5f7b1 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -15,6 +15,7 @@ if r.returncode() == 0
|
|
else
|
|
distributor_name = 'GNOME Web'
|
|
endif
|
|
+distributor_name = 'OpenEmbedded'
|
|
|
|
prefix = get_option('prefix')
|
|
datadir = join_paths(prefix, get_option('datadir'))
|