D: [iurt_root_command] chroot Installing /home/iurt/rpmbuild/SRPMS/b43-tools-019-2.mga8.src.rpm Building target platforms: aarch64 Building for target aarch64 Executing(%prep): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.Ovy8vG + umask 022 + cd /home/iurt/rpmbuild/BUILD + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/iurt/rpmbuild/BUILD + rm -rf b43-tools-b43-fwcutter-019 + /usr/bin/xz -dc /home/iurt/rpmbuild/SOURCES/b43-tools-b43-fwcutter-019.tar.xz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd b43-tools-b43-fwcutter-019 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + /usr/bin/cat /home/iurt/rpmbuild/SOURCES/0001-b43-tools-fix-format-security-errors.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch + /usr/bin/cat /home/iurt/rpmbuild/SOURCES/0002-Explicitly-use-python3.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch + install -p -m 0644 assembler/COPYING COPYING.assembler + install -p -m 0644 assembler/README README.assembler + install -p -m 0644 debug/COPYING COPYING.debug + install -p -m 0644 debug/README README.debug + install -p -m 0644 disassembler/COPYING COPYING.disassembler + install -p -m 0644 ssb_sprom/README README.ssb_sprom + install -p -m 0644 ssb_sprom/COPYING COPYING.ssb_sprom + install -p -m 0644 debug/install.py debug/setup.py + 2to3 -w . RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: No changes to ./debug/install.py RefactoringTool: Refactored ./debug/libb43.py RefactoringTool: No changes to ./debug/setup.py RefactoringTool: Refactored ./fwcutter/mklist.py --- ./debug/libb43.py (original) +++ ./debug/libb43.py (refactored) @@ -74,14 +74,14 @@ try: phys = os.listdir(b43_path) except OSError: - print "Could not find B43's debugfs directory: %s" % b43_path + print("Could not find B43's debugfs directory: %s" % b43_path) raise B43Exception if not phys: - print "Could not find any b43 device" + print("Could not find any b43 device") raise B43Exception if len(phys) != 1: - print "Found multiple b43 devices." - print "You must call this tool with a phyX parameter to specify a device" + print("Found multiple b43 devices.") + print("You must call this tool with a phyX parameter to specify a device") raise B43Exception phy = phys[0] b43_path += phy; @@ -96,8 +96,8 @@ self.f_shm16write = file(b43_path + "/shm16write", "w") self.f_shm32read = file(b43_path + "/shm32read", "r+") self.f_shm32write = file(b43_path + "/shm32write", "w") - except IOError, e: - print "Could not open debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not open debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception self.b43_path = b43_path @@ -114,7 +114,7 @@ path = m.group(1) break if not path: - print "Could not find debugfs in /etc/mtab" + print("Could not find debugfs in /etc/mtab") raise B43Exception return path @@ -126,8 +126,8 @@ self.f_mmio16read.flush() self.f_mmio16read.seek(0) val = self.f_mmio16read.read() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return int(val, 16) @@ -139,8 +139,8 @@ self.f_mmio32read.flush() self.f_mmio32read.seek(0) val = self.f_mmio32read.read() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return int(val, 16) @@ -152,8 +152,8 @@ self.f_mmio16write.seek(0) self.f_mmio16write.write("0x%X 0x%X 0x%X" % (reg, mask, set)) self.f_mmio16write.flush() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return @@ -170,8 +170,8 @@ self.f_mmio32write.seek(0) self.f_mmio32write.write("0x%X 0x%X 0x%X" % (reg, mask, set)) self.f_mmio32write.flush() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return @@ -188,8 +188,8 @@ self.f_shm16read.flush() self.f_shm16read.seek(0) val = self.f_shm16read.read() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return int(val, 16) @@ -201,8 +201,8 @@ self.f_shm16write.seek(0) self.f_shm16write.write("0x%X 0x%X 0x%X 0x%X" % (routing, offset, mask, set)) self.f_shm16write.flush() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return @@ -219,8 +219,8 @@ self.f_shm32read.flush() self.f_shm32read.seek(0) val = self.f_shm32read.read() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return int(val, 16) @@ -232,8 +232,8 @@ self.f_shm32write.seek(0) self.f_shm32write.write("0x%X 0x%X 0x%X 0x%X" % (routing, offset, mask, set)) self.f_shm32write.flush() - except IOError, e: - print "Could not access debugfs file %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("Could not access debugfs file %s: %s" % (e.filename, e.strerror)) raise B43Exception return @@ -345,9 +345,9 @@ def __init__(self, text, expected_md5sum): sum = hashlib.md5(text).hexdigest() if sum != expected_md5sum: - print "Patcher: The text does not match the expected MD5 sum" - print "Expected: " + expected_md5sum - print "Calculated: " + sum + print("Patcher: The text does not match the expected MD5 sum") + print("Expected: " + expected_md5sum) + print("Calculated: " + sum) raise B43Exception text = text.splitlines() self.lines = [] @@ -375,7 +375,7 @@ if l.index == linenumber: l.deleted = True return - print "Patcher deleteLine: Did not find the line!" + print("Patcher deleteLine: Did not find the line!") raise B43Exception def addText(self, beforeLineNumber, text): @@ -388,7 +388,7 @@ break index += 1 if index >= len(self.lines): - print "Patcher addText: Did not find the line!" + print("Patcher addText: Did not find the line!") raise B43Exception for l in text: self.lines.insert(index, TextPatcher.TextLine(-1, l)) @@ -402,8 +402,8 @@ assembly file containing the symbolic SPR definitions.""" try: defs = file(header_file).readlines() - except IOError, e: - print "B43SymbolicSpr: Could not read %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("B43SymbolicSpr: Could not read %s: %s" % (e.filename, e.strerror)) B43Exception # Parse the definitions self.spr_names = { } @@ -438,8 +438,8 @@ assembly file containing the symbolic SHM definitions.""" try: defs = file(header_file).readlines() - except IOError, e: - print "B43SymbolicShm: Could not read %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("B43SymbolicShm: Could not read %s: %s" % (e.filename, e.strerror)) raise B43Exception # Parse the definitions self.shm_names = { } @@ -477,8 +477,8 @@ assembly file containing the symbolic condition definitions.""" try: defs = file(header_file).readlines() - except IOError, e: - print "B43SymbolicCondition: Could not read %s: %s" % (e.filename, e.strerror) + except IOError as e: + print("B43SymbolicCondition: Could not read %s: %s" % (e.filename, e.strerror)) raise B43Exception # Parse the definitions self.cond_names = { } --- ./fwcutter/mklist.py (original) +++ ./fwcutter/mklist.py (refactored) @@ -33,7 +33,7 @@ import hashlib if len(sys.argv) != 2: - print "Usage: %s path/to/wl.o" % sys.argv[0] + print("Usage: %s path/to/wl.o" % sys.argv[0]) sys.exit(1) fn = sys.argv[1] @@ -52,13 +52,13 @@ rodata_fileoffset = int(m.group(1), 16) break if rodata_fileoffset == None: - print "ERROR: Could not find .rodata fileoffset" + print("ERROR: Could not find .rodata fileoffset") sys.exit(1) md5sum = hashlib.md5(file(fn, "r").read()) -print "static struct extract _%s[] =" % md5sum.hexdigest() -print "{" +print("static struct extract _%s[] =" % md5sum.hexdigest()) +print("{") sym_re = re.compile(r"([0-9a-fA-F]+)\s+g\s+O\s+\.rodata\s+([0-9a-fA-F]+) d11([-_\s\w0-9]+)") ucode_re = re.compile(r"ucode(\d+)") @@ -81,10 +81,10 @@ if "pcm" in name: type = "EXT_PCM" if "bommajor" in name: - print "\t/* ucode major version at offset 0x%x */" % pos + print("\t/* ucode major version at offset 0x%x */" % pos) continue if "bomminor" in name: - print "\t/* ucode minor version at offset 0x%x */" % pos + print("\t/* ucode minor version at offset 0x%x */" % pos) continue if "ucode_2w" in name: continue @@ -98,9 +98,9 @@ else: type = "EXT_UCODE_3" if not type: - print "\t/* ERROR: Could not guess data type for: %s */" % name + print("\t/* ERROR: Could not guess data type for: %s */" % name) continue - print "\t{ .name = \"%s\", .offset = 0x%X, .type = %s, .length = 0x%X }," % (name, pos, type, size)RefactoringTool: Files that were modified: RefactoringTool: ./debug/install.py RefactoringTool: ./debug/libb43.py RefactoringTool: ./debug/setup.py RefactoringTool: ./fwcutter/mklist.py -print "\tEXTRACT_LIST_END" -print "};" + print("\t{ .name = \"%s\", .offset = 0x%X, .type = %s, .length = 0x%X }," % (name, pos, type, size)) +print("\tEXTRACT_LIST_END") +print("};") + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.2ptpeH + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd b43-tools-b43-fwcutter-019 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + make -j8 -C assembler make: Entering directory '/home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019/assembler' DEPEND dep/util.d YACC parser.c DEPEND dep/main.d DEPEND dep/initvals.d DEPEND dep/args.d LEX scanner.c DEPEND dep/parser.d DEPEND dep/scanner.d DEPEND dep/main.d CC obj/args.o CC obj/initvals.o CC obj/main.o CC obj/parser.o CC obj/scanner.o main.c: In function 'is_valid_imm': main.c:219:13: warning: left shift of negative value [-Wshift-negative-value] 219 | mask = (~0 << immediate_size) & 0xFFFF; | ^~ CC obj/util.o CC b43-asm.bin make: Leaving directory '/home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019/assembler' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + make -j8 -C disassembler make: Entering directory '/home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019/disassembler' DEPEND dep/util.d DEPEND dep/main.d DEPEND dep/args.d CC obj/args.o CC obj/main.o CC obj/util.o main.c: In function 'disasm_std_operand': main.c:105:23: warning: '%X' directive output may be truncated writing between 1 and 8 bytes into a region of size 6 [-Wformat-truncation=] 105 | snprintf(ret, 9, "[0x%X]", operand); | ^~ main.c:105:19: note: directive argument in the range [0, 4294965247] 105 | snprintf(ret, 9, "[0x%X]", operand); | ^~~~~~~~ In file included from /usr/include/stdio.h:866, from main.h:4, from main.c:14: /usr/include/bits/stdio2.h:70:10: note: '__builtin___snprintf_chk' output between 6 and 13 bytes into a destination of size 9 70 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 71 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:105:23: warning: '%X' directive output may be truncated writing between 1 and 8 bytes into a region of size 6 [-Wformat-truncation=] 105 | snprintf(ret, 9, "[0x%X]", operand); | ^~ main.c:105:19: note: directive argument in the range [0, 4294963199] 105 | snprintf(ret, 9, "[0x%X]", operand); | ^~~~~~~~ In file included from /usr/include/stdio.h:866, from main.h:4, from main.c:14: /usr/include/bits/stdio2.h:70:10: note: '__builtin___snprintf_chk' output between 6 and 13 bytes into a destination of size 9 70 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 71 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CC b43-dasm make: Leaving directory '/home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019/disassembler' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + make -j8 -C ssb_sprom make: Entering directory '/home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019/ssb_sprom' DEPEND dep/utils.d DEPEND dep/ssb_sprom.d CC obj/ssb_sprom.o In file included from /usr/include/bits/libc-header-start.h:33, from /usr/include/stdio.h:27, from utils.h:4, from ssb_sprom.h:27, from ssb_sprom.c:25: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ CC obj/utils.o In file included from /usr/include/bits/libc-header-start.h:33, from /usr/include/stdio.h:27, from utils.h:4, from utils.c:24: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ssb_sprom.c: In function 'main': ssb_sprom.c:454:34: warning: '%s' directive writing up to 99 bytes into a region of size between 35 and 36 [-Wformat-overflow=] 454 | sprintf(buffer, "SPROM(0x%03X), %s, ", offset, desc); | ^~ ~~~~ In file included from /usr/include/stdio.h:866, from utils.h:4, from ssb_sprom.h:27, from ssb_sprom.c:25: /usr/include/bits/stdio2.h:38:10: note: '__builtin___sprintf_chk' output between 24 and 124 bytes into a destination of size 50 38 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 39 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ssb_sprom.c:454:34: warning: '%s' directive writing up to 99 bytes into a region of size between 35 and 36 [-Wformat-overflow=] 454 | sprintf(buffer, "SPROM(0x%03X), %s, ", offset, desc); | ^~ ~~~~ In file included from /usr/include/stdio.h:866, from utils.h:4, from ssb_sprom.h:27, from ssb_sprom.c:25: /usr/include/bits/stdio2.h:38:10: note: '__builtin___sprintf_chk' output between 24 and 124 bytes into a destination of size 50 38 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 39 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CC ssb-sprom make: Leaving directory '/home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019/ssb_sprom' + cd debug + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags' + /usr/bin/python3 setup.py build '--executable=/usr/bin/python3 -s' running build running build_py creating build creating build/lib copying libb43.py -> build/lib running build_scripts creating build/scripts-3.8 copying and adjusting b43-fwdump -> build/scripts-3.8 copying and adjusting b43-beautifier -> build/scripts-3.8 changing mode of build/scripts-3.8/b43-fwdump from 644 to 755 changing mode of build/scripts-3.8/b43-beautifier from 644 to 755 + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.sZOx5I + umask 022 + cd /home/iurt/rpmbuild/BUILD + '[' 1 -eq 1 ']' + '[' /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 '!=' / ']' + rm -rf /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 ++ dirname /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 + mkdir -p /home/iurt/rpmbuild/BUILDROOT + mkdir /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 + cd b43-tools-b43-fwcutter-019 + '[' 1 -eq 1 ']' + mkdir -p /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 assembler/b43-asm /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 assembler/b43-asm.bin /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 disassembler/b43-dasm /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 disassembler/b43-ivaldump /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 disassembler/brcm80211-fwconv /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 disassembler/brcm80211-ivaldump /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + install -p -m 0755 ssb_sprom/ssb-sprom /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin + cd debug + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags' + /usr/bin/python3 setup.py install -O1 --skip-build --root /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 running install running install_lib creating /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib creating /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib/python3.8 creating /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib/python3.8/site-packages copying build/lib/libb43.py -> /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib/python3.8/site-packages byte-compiling /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib/python3.8/site-packages/libb43.py to libb43.cpython-38.pyc writing byte-compilation script '/tmp/tmptbz9afnt.py' /usr/bin/python3 /tmp/tmptbz9afnt.py removing /tmp/tmptbz9afnt.py running install_scripts copying build/scripts-3.8/b43-beautifier -> /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin copying build/scripts-3.8/b43-fwdump -> /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin changing mode of /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/b43-beautifier to 755 changing mode of /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/b43-fwdump to 755 running install_egg_info Writing /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib/python3.8/site-packages/B43_debug_tools-0.0.0-py3.8.egg-info + rm -rfv /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/__pycache__ + /usr/lib/rpm/find-debuginfo.sh -j8 --strict-build-id -m -i --build-id-seed 019-2.mga8 --unique-debug-suffix -019-2.mga8.aarch64 --unique-debug-src-base b43-tools-019-2.mga8.aarch64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /home/iurt/rpmbuild/BUILD/b43-tools-b43-fwcutter-019 explicitly decompress any DWARF compressed ELF sections in /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/b43-asm.bin explicitly decompress any DWARF compressed ELF sections in /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/b43-dasm extracting debug info from /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/b43-asm.bin extracting debug info from /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/b43-dasm explicitly decompress any DWARF compressed ELF sections in /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/ssb-sprom extracting debug info from /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/bin/ssb-sprom original debug info size: 440kB, size after compression: 424kB /usr/lib/rpm/sepdebugcrcfix: Updated 3 CRC32s, 0 CRC32s did match. 803 blocks + /usr/lib/rpm/check-buildroot + '[' -n '' ']' + /usr/share/spec-helper/clean_files + '[' -n '' ']' + /usr/share/spec-helper/compress_files .xz + '[' -n '' ']' + /usr/share/spec-helper/relink_symlinks + '[' -n '' ']' + /usr/share/spec-helper/clean_perl + '[' -n '' ']' + /usr/share/spec-helper/lib_symlinks + '[' -n '' ']' + /usr/share/spec-helper/gprintify + '[' -n '' ']' + /usr/share/spec-helper/fix_mo + '[' -n '' ']' + /usr/share/spec-helper/fix_pamd + '[' -n '' ']' + /usr/share/spec-helper/remove_info_dir + '[' -n '' ']' + /usr/share/spec-helper/fix_eol + '[' -n '' ']' + /usr/share/spec-helper/check_desktop_files + '[' -n '' ']' + /usr/share/spec-helper/check_elf_files + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python3 1 1 Bytecompiling .py files below /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/lib/python3.8 using /usr/bin/python3.8 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-mangle-shebangs mangling shebang in /usr/bin/brcm80211-ivaldump from /usr/bin/env python3 to #!/usr/bin/python3 mangling shebang in /usr/bin/brcm80211-fwconv from /usr/bin/env python3 to #!/usr/bin/python3 mangling shebang in /usr/bin/b43-asm from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/bin/b43-ivaldump from /usr/bin/env python3 to #!/usr/bin/python3 Processing files: b43-tools-019-2.mga8.aarch64 Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.IiEXWF + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd b43-tools-b43-fwcutter-019 + DOCDIR=/home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/share/doc/b43-tools + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/share/doc/b43-tools + cp -pr README.assembler README.debug README.ssb_sprom /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/share/doc/b43-tools + cp -pr COPYING.assembler COPYING.debug COPYING.disassembler COPYING.ssb_sprom /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64/usr/share/doc/b43-tools + RPM_EC=0 ++ jobs -p + exit 0 Provides: b43-tools = 019-2.mga8 b43-tools(aarch-64) = 019-2.mga8 python3.8dist(b43-debug-tools) = 0 python3dist(b43-debug-tools) = 0 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: ld-linux-aarch64.so.1()(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) python(abi) = 3.8 Processing files: b43-tools-debugsource-019-2.mga8.aarch64 Provides: b43-tools-debugsource = 019-2.mga8 b43-tools-debugsource(aarch-64) = 019-2.mga8 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: b43-tools-debuginfo-019-2.mga8.aarch64 Provides: b43-tools-debuginfo = 019-2.mga8 b43-tools-debuginfo(aarch-64) = 019-2.mga8 debuginfo(build-id) = 24f19f17b5f8ede97da0c648ae247d340d02df13 debuginfo(build-id) = 39ad0eee97802b4679caafe0fed21abb7219a54d debuginfo(build-id) = e501a569d4b1ff344a36ec4b0c4a1fee2aba3bdc Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: b43-tools-debugsource(aarch-64) = 019-2.mga8 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 Wrote: /home/iurt/rpmbuild/RPMS/aarch64/b43-tools-019-2.mga8.aarch64.rpm Wrote: /home/iurt/rpmbuild/RPMS/aarch64/b43-tools-debuginfo-019-2.mga8.aarch64.rpm Wrote: /home/iurt/rpmbuild/RPMS/aarch64/b43-tools-debugsource-019-2.mga8.aarch64.rpm Executing(%clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.gd9B3J + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd b43-tools-b43-fwcutter-019 + /usr/bin/rm -rf /home/iurt/rpmbuild/BUILDROOT/b43-tools-019-2.mga8.aarch64 + RPM_EC=0 ++ jobs -p + exit 0 Executing(--clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.pqN7pJ + umask 022 + cd /home/iurt/rpmbuild/BUILD + rm -rf b43-tools-b43-fwcutter-019 + RPM_EC=0 ++ jobs -p + exit 0 D: [iurt_root_command] Success!