Complete Yocto mirror with license table for TQMa6UL (2038-compliance)

- 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)
This commit is contained in:
Siggi (OpenClaw Agent)
2026-03-01 20:58:18 +00:00
commit 16accb6b24
15086 changed files with 1292356 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
From a36abadfb2d135260bef7703a1d0b56e6aa7eeff Mon Sep 17 00:00:00 2001
From: Tim Orling <tim.orling@konsulko.com>
Date: Mon, 28 Feb 2022 08:21:33 -0800
Subject: [PATCH] setup.py: switch to setuptools
In Python 3.10, 'distutils' has been deprecated and is slated for
removal in Python 3.12.
Switch from 'distutils.core' to 'setuptools'. This also allows for the
'wheel' binary archive format to be built with 'setup.py bdist_wheel'.
Upstream-Status: Submitted
[https://github.com/rlisagor/pynetlinux/pull/12]
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 670e064..45f1053 100755
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from distutils.core import setup
+from setuptools import setup
setup(
name = "pynetlinux",
--
2.30.2

View File

@@ -0,0 +1,60 @@
From afb778669efbc658a29e6bdb1c4834fee42931aa Mon Sep 17 00:00:00 2001
From: Robert Grant <rgrant@mdi.us.com>
Date: Wed, 10 Sep 2014 14:56:33 -0400
Subject: [PATCH] Fixed relative imports
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
Upstream-Status: Backport [https://github.com/rlisagor/pynetlinux/commit/afb778669efbc658a29e6bdb1c4834fee42931aa]
pynetlinux/__init__.py | 8 ++++----
pynetlinux/brctl.py | 2 +-
pynetlinux/tap.py | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/pynetlinux/__init__.py b/pynetlinux/__init__.py
index dbbf392..b6e1b8e 100644
--- a/pynetlinux/__init__.py
+++ b/pynetlinux/__init__.py
@@ -2,7 +2,7 @@
# import pylinux
# does a reasonable thing.
-import brctl
-import ifconfig
-import tap
-import route
+from . import brctl
+from . import ifconfig
+from . import tap
+from . import route
diff --git a/pynetlinux/brctl.py b/pynetlinux/brctl.py
index f54d176..a8b926e 100644
--- a/pynetlinux/brctl.py
+++ b/pynetlinux/brctl.py
@@ -3,7 +3,7 @@ import fcntl
import os
import struct
-import ifconfig
+from . import ifconfig
SYSFS_NET_PATH = "/sys/class/net"
diff --git a/pynetlinux/tap.py b/pynetlinux/tap.py
index 0a0d59c..3f8ad3a 100644
--- a/pynetlinux/tap.py
+++ b/pynetlinux/tap.py
@@ -2,7 +2,7 @@ import fcntl
import os
import struct
-import ifconfig
+from . import ifconfig
# From linux/if_tun.h
--
2.39.2