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:
75
sources/poky/scripts/tiny/dirsize.py
Executable file
75
sources/poky/scripts/tiny/dirsize.py
Executable file
@@ -0,0 +1,75 @@
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
#
|
||||
# Display details of the root filesystem size, broken up by directory.
|
||||
# Allows for limiting by size to focus on the larger files.
|
||||
#
|
||||
# Author: Darren Hart <dvhart@linux.intel.com>
|
||||
#
|
||||
|
||||
import os
|
||||
import sys
|
||||
import stat
|
||||
|
||||
class Record:
|
||||
def create(path):
|
||||
r = Record(path)
|
||||
|
||||
s = os.lstat(path)
|
||||
if stat.S_ISDIR(s.st_mode):
|
||||
for p in os.listdir(path):
|
||||
pathname = path + "/" + p
|
||||
ss = os.lstat(pathname)
|
||||
if not stat.S_ISLNK(ss.st_mode):
|
||||
r.records.append(Record.create(pathname))
|
||||
r.size += r.records[-1].size
|
||||
r.records.sort(reverse=True)
|
||||
else:
|
||||
r.size = os.lstat(path).st_size
|
||||
|
||||
return r
|
||||
create = staticmethod(create)
|
||||
|
||||
def __init__(self, path):
|
||||
self.path = path
|
||||
self.size = 0
|
||||
self.records = []
|
||||
|
||||
def __lt__(this, that):
|
||||
if that is None:
|
||||
return False
|
||||
if not isinstance(that, Record):
|
||||
raise TypeError
|
||||
if len(this.records) > 0 and len(that.records) == 0:
|
||||
return False
|
||||
if this.size > that.size:
|
||||
return False
|
||||
return True
|
||||
|
||||
def show(self, minsize):
|
||||
total = 0
|
||||
if self.size <= minsize:
|
||||
return 0
|
||||
print("%10d %s" % (self.size, self.path))
|
||||
for r in self.records:
|
||||
total += r.show(minsize)
|
||||
if len(self.records) == 0:
|
||||
total = self.size
|
||||
return total
|
||||
|
||||
|
||||
def main():
|
||||
minsize = 0
|
||||
if len(sys.argv) == 2:
|
||||
minsize = int(sys.argv[1])
|
||||
rootfs = Record.create(".")
|
||||
total = rootfs.show(minsize)
|
||||
print("Displayed %d/%d bytes (%.2f%%)" % \
|
||||
(total, rootfs.size, 100 * float(total) / rootfs.size))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
156
sources/poky/scripts/tiny/ksize.py
Executable file
156
sources/poky/scripts/tiny/ksize.py
Executable file
@@ -0,0 +1,156 @@
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
#
|
||||
# Display details of the kernel build size, broken up by built-in.[o,a]. Sort
|
||||
# the objects by size. Run from the top level kernel build directory.
|
||||
#
|
||||
# Author: Darren Hart <dvhart@linux.intel.com>
|
||||
#
|
||||
|
||||
import sys
|
||||
import getopt
|
||||
import os
|
||||
from subprocess import *
|
||||
|
||||
def usage():
|
||||
prog = os.path.basename(sys.argv[0])
|
||||
print('Usage: %s [OPTION]...' % prog)
|
||||
print(' -d, display an additional level of drivers detail')
|
||||
print(' -h, --help display this help and exit')
|
||||
print('')
|
||||
print('Run %s from the top-level Linux kernel build directory.' % prog)
|
||||
|
||||
|
||||
class Sizes:
|
||||
def __init__(self, glob):
|
||||
self.title = glob
|
||||
p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True)
|
||||
output = p.communicate()[0].splitlines()
|
||||
if len(output) > 2:
|
||||
sizes = output[-1].split()[0:4]
|
||||
self.text = int(sizes[0])
|
||||
self.data = int(sizes[1])
|
||||
self.bss = int(sizes[2])
|
||||
self.total = int(sizes[3])
|
||||
else:
|
||||
self.text = self.data = self.bss = self.total = 0
|
||||
|
||||
def show(self, indent=""):
|
||||
print("%-32s %10d | %10d %10d %10d" % \
|
||||
(indent+self.title, self.total, self.text, self.data, self.bss))
|
||||
|
||||
|
||||
class Report:
|
||||
def create(filename, title, subglob=None):
|
||||
r = Report(filename, title)
|
||||
path = os.path.dirname(filename)
|
||||
|
||||
p = Popen("ls " + str(path) + "/*.o | grep -v built-in.o",
|
||||
shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True)
|
||||
glob = ' '.join(p.communicate()[0].splitlines())
|
||||
oreport = Report(glob, str(path) + "/*.o")
|
||||
oreport.sizes.title = str(path) + "/*.o"
|
||||
r.parts.append(oreport)
|
||||
|
||||
if subglob:
|
||||
p = Popen("ls " + subglob, shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True)
|
||||
for f in p.communicate()[0].splitlines():
|
||||
path = os.path.dirname(f)
|
||||
r.parts.append(Report.create(f, path, str(path) + "/*/built-in.[o,a]"))
|
||||
r.parts.sort(reverse=True)
|
||||
|
||||
for b in r.parts:
|
||||
r.totals["total"] += b.sizes.total
|
||||
r.totals["text"] += b.sizes.text
|
||||
r.totals["data"] += b.sizes.data
|
||||
r.totals["bss"] += b.sizes.bss
|
||||
|
||||
r.deltas["total"] = r.sizes.total - r.totals["total"]
|
||||
r.deltas["text"] = r.sizes.text - r.totals["text"]
|
||||
r.deltas["data"] = r.sizes.data - r.totals["data"]
|
||||
r.deltas["bss"] = r.sizes.bss - r.totals["bss"]
|
||||
return r
|
||||
create = staticmethod(create)
|
||||
|
||||
def __init__(self, glob, title):
|
||||
self.glob = glob
|
||||
self.title = title
|
||||
self.sizes = Sizes(glob)
|
||||
self.parts = []
|
||||
self.totals = {"total":0, "text":0, "data":0, "bss":0}
|
||||
self.deltas = {"total":0, "text":0, "data":0, "bss":0}
|
||||
|
||||
def show(self, indent=""):
|
||||
rule = str.ljust(indent, 80, '-')
|
||||
print("%-32s %10s | %10s %10s %10s" % \
|
||||
(indent+self.title, "total", "text", "data", "bss"))
|
||||
print(rule)
|
||||
self.sizes.show(indent)
|
||||
print(rule)
|
||||
for p in self.parts:
|
||||
if p.sizes.total > 0:
|
||||
p.sizes.show(indent)
|
||||
print(rule)
|
||||
print("%-32s %10d | %10d %10d %10d" % \
|
||||
(indent+"sum", self.totals["total"], self.totals["text"],
|
||||
self.totals["data"], self.totals["bss"]))
|
||||
print("%-32s %10d | %10d %10d %10d" % \
|
||||
(indent+"delta", self.deltas["total"], self.deltas["text"],
|
||||
self.deltas["data"], self.deltas["bss"]))
|
||||
print("\n")
|
||||
|
||||
def __lt__(this, that):
|
||||
if that is None:
|
||||
return 1
|
||||
if not isinstance(that, Report):
|
||||
raise TypeError
|
||||
return this.sizes.total < that.sizes.total
|
||||
|
||||
def __cmp__(this, that):
|
||||
if that is None:
|
||||
return 1
|
||||
if not isinstance(that, Report):
|
||||
raise TypeError
|
||||
if this.sizes.total < that.sizes.total:
|
||||
return -1
|
||||
if this.sizes.total > that.sizes.total:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
|
||||
def main():
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "dh", ["help"])
|
||||
except getopt.GetoptError as err:
|
||||
print('%s' % str(err))
|
||||
usage()
|
||||
sys.exit(2)
|
||||
|
||||
driver_detail = False
|
||||
for o, a in opts:
|
||||
if o == '-d':
|
||||
driver_detail = True
|
||||
elif o in ('-h', '--help'):
|
||||
usage()
|
||||
sys.exit(0)
|
||||
else:
|
||||
assert False, "unhandled option"
|
||||
|
||||
glob = "arch/*/built-in.[o,a] */built-in.[o,a]"
|
||||
vmlinux = Report.create("vmlinux", "Linux Kernel", glob)
|
||||
|
||||
vmlinux.show()
|
||||
for b in vmlinux.parts:
|
||||
if b.totals["total"] > 0 and len(b.parts) > 1:
|
||||
b.show()
|
||||
if b.title == "drivers" and driver_detail:
|
||||
for d in b.parts:
|
||||
if d.totals["total"] > 0 and len(d.parts) > 1:
|
||||
d.show(" ")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
154
sources/poky/scripts/tiny/ksum.py
Executable file
154
sources/poky/scripts/tiny/ksum.py
Executable file
@@ -0,0 +1,154 @@
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2016, Intel Corporation.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
#
|
||||
# DESCRIPTION 'ksum.py' generates a combined summary of vmlinux and
|
||||
# module sizes for a built kernel, as a quick tool for comparing the
|
||||
# overall effects of systemic tinification changes. Execute from the
|
||||
# base directory of the kernel build you want to summarize. Setting
|
||||
# the 'verbose' flag will display the sizes for each file included in
|
||||
# the summary.
|
||||
#
|
||||
# AUTHORS
|
||||
# Tom Zanussi <tom.zanussi (at] linux.intel.com>
|
||||
#
|
||||
|
||||
__version__ = "0.1.0"
|
||||
|
||||
# Python Standard Library modules
|
||||
import os
|
||||
import sys
|
||||
import getopt
|
||||
from subprocess import *
|
||||
|
||||
def usage():
|
||||
prog = os.path.basename(sys.argv[0])
|
||||
print('Usage: %s [OPTION]...' % prog)
|
||||
print(' -v, display sizes for each file')
|
||||
print(' -h, --help display this help and exit')
|
||||
print('')
|
||||
print('Run %s from the top-level Linux kernel build directory.' % prog)
|
||||
|
||||
verbose = False
|
||||
|
||||
n_ko_files = 0
|
||||
ko_file_list = []
|
||||
|
||||
ko_text = 0
|
||||
ko_data = 0
|
||||
ko_bss = 0
|
||||
ko_total = 0
|
||||
|
||||
vmlinux_file = ""
|
||||
vmlinux_level = 0
|
||||
|
||||
vmlinux_text = 0
|
||||
vmlinux_data = 0
|
||||
vmlinux_bss = 0
|
||||
vmlinux_total = 0
|
||||
|
||||
def is_vmlinux_file(filename):
|
||||
global vmlinux_level
|
||||
if filename == ("vmlinux") and vmlinux_level == 0:
|
||||
vmlinux_level += 1
|
||||
return True
|
||||
return False
|
||||
|
||||
def is_ko_file(filename):
|
||||
if filename.endswith(".ko"):
|
||||
return True
|
||||
return False
|
||||
|
||||
def collect_object_files():
|
||||
print("Collecting object files recursively from %s..." % os.getcwd())
|
||||
for dirpath, dirs, files in os.walk(os.getcwd()):
|
||||
for filename in files:
|
||||
if is_ko_file(filename):
|
||||
ko_file_list.append(os.path.join(dirpath, filename))
|
||||
elif is_vmlinux_file(filename):
|
||||
global vmlinux_file
|
||||
vmlinux_file = os.path.join(dirpath, filename)
|
||||
print("Collecting object files [DONE]")
|
||||
|
||||
def add_ko_file(filename):
|
||||
p = Popen("size -t " + filename, shell=True, stdout=PIPE, stderr=PIPE)
|
||||
output = p.communicate()[0].splitlines()
|
||||
if len(output) > 2:
|
||||
sizes = output[-1].split()[0:4]
|
||||
if verbose:
|
||||
print(" %10d %10d %10d %10d\t" % \
|
||||
(int(sizes[0]), int(sizes[1]), int(sizes[2]), int(sizes[3])), end=' ')
|
||||
print("%s" % filename[len(os.getcwd()) + 1:])
|
||||
global n_ko_files, ko_text, ko_data, ko_bss, ko_total
|
||||
ko_text += int(sizes[0])
|
||||
ko_data += int(sizes[1])
|
||||
ko_bss += int(sizes[2])
|
||||
ko_total += int(sizes[3])
|
||||
n_ko_files += 1
|
||||
|
||||
def get_vmlinux_totals():
|
||||
p = Popen("size -t " + vmlinux_file, shell=True, stdout=PIPE, stderr=PIPE)
|
||||
output = p.communicate()[0].splitlines()
|
||||
if len(output) > 2:
|
||||
sizes = output[-1].split()[0:4]
|
||||
if verbose:
|
||||
print(" %10d %10d %10d %10d\t" % \
|
||||
(int(sizes[0]), int(sizes[1]), int(sizes[2]), int(sizes[3])), end=' ')
|
||||
print("%s" % vmlinux_file[len(os.getcwd()) + 1:])
|
||||
global vmlinux_text, vmlinux_data, vmlinux_bss, vmlinux_total
|
||||
vmlinux_text += int(sizes[0])
|
||||
vmlinux_data += int(sizes[1])
|
||||
vmlinux_bss += int(sizes[2])
|
||||
vmlinux_total += int(sizes[3])
|
||||
|
||||
def sum_ko_files():
|
||||
for ko_file in ko_file_list:
|
||||
add_ko_file(ko_file)
|
||||
|
||||
def main():
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "vh", ["help"])
|
||||
except getopt.GetoptError as err:
|
||||
print('%s' % str(err))
|
||||
usage()
|
||||
sys.exit(2)
|
||||
|
||||
for o, a in opts:
|
||||
if o == '-v':
|
||||
global verbose
|
||||
verbose = True
|
||||
elif o in ('-h', '--help'):
|
||||
usage()
|
||||
sys.exit(0)
|
||||
else:
|
||||
assert False, "unhandled option"
|
||||
|
||||
collect_object_files()
|
||||
sum_ko_files()
|
||||
get_vmlinux_totals()
|
||||
|
||||
print("\nTotals:")
|
||||
print("\nvmlinux:")
|
||||
print(" text\tdata\t\tbss\t\ttotal")
|
||||
print(" %-10d\t%-10d\t%-10d\t%-10d" % \
|
||||
(vmlinux_text, vmlinux_data, vmlinux_bss, vmlinux_total))
|
||||
print("\nmodules (%d):" % n_ko_files)
|
||||
print(" text\tdata\t\tbss\t\ttotal")
|
||||
print(" %-10d\t%-10d\t%-10d\t%-10d" % \
|
||||
(ko_text, ko_data, ko_bss, ko_total))
|
||||
print("\nvmlinux + modules:")
|
||||
print(" text\tdata\t\tbss\t\ttotal")
|
||||
print(" %-10d\t%-10d\t%-10d\t%-10d" % \
|
||||
(vmlinux_text + ko_text, vmlinux_data + ko_data, \
|
||||
vmlinux_bss + ko_bss, vmlinux_total + ko_total))
|
||||
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
ret = main()
|
||||
except Exception:
|
||||
ret = 1
|
||||
import traceback
|
||||
traceback.print_exc(5)
|
||||
sys.exit(ret)
|
||||
Reference in New Issue
Block a user