@@ -18,7 +18,7 @@ import time
18
18
19
19
sys .path .insert (0 , os .path .dirname (os .path .abspath (__file__ )))
20
20
from cosalib .builds import Builds
21
- from cosalib .cmdlib import run_verbose , sha256sum_file
21
+ from cosalib .cmdlib import runcmd_verbose , sha256sum_file
22
22
from cosalib .cmdlib import import_ostree_commit , get_basearch , ensure_glob
23
23
from cosalib .meta import GenericBuildMeta
24
24
@@ -137,18 +137,18 @@ def align_initrd_for_uncompressed_append(destf):
137
137
def get_os_features ():
138
138
features = {}
139
139
140
- f = run_verbose (['/usr/bin/ostree' , 'cat' , '--repo' , repo ,
141
- buildmeta_commit , '/usr/libexec/coreos-installer-service' ],
142
- capture_output = True ).stdout .decode ()
140
+ f = runcmd_verbose (['/usr/bin/ostree' , 'cat' , '--repo' , repo ,
141
+ buildmeta_commit , '/usr/libexec/coreos-installer-service' ],
142
+ capture_output = True ).stdout .decode ()
143
143
# eventually we can assume coreos-installer >= 0.12.0, delete this check,
144
144
# and hardcode the feature flag
145
145
if '--config-file' in f :
146
146
features ['installer-config' ] = True
147
147
148
- f = run_verbose (['/usr/bin/ostree' , 'cat' , '--repo' , repo ,
149
- buildmeta_commit ,
150
- '/usr/lib/dracut/modules.d/35coreos-network/coreos-copy-firstboot-network.sh' ],
151
- capture_output = True ).stdout .decode ()
148
+ f = runcmd_verbose (['/usr/bin/ostree' , 'cat' , '--repo' , repo ,
149
+ buildmeta_commit ,
150
+ '/usr/lib/dracut/modules.d/35coreos-network/coreos-copy-firstboot-network.sh' ],
151
+ capture_output = True ).stdout .decode ()
152
152
# eventually we can assume /etc/coreos-firstboot-network support and
153
153
# hardcode the feature flag
154
154
if 'etc_firstboot_network_dir' in f :
@@ -239,17 +239,17 @@ def generate_iso():
239
239
# Find the directory under `/usr/lib/modules/<kver>` where the
240
240
# kernel/initrd live. It will be the 2nd entity output by
241
241
# `ostree ls <commit> /usr/lib/modules`
242
- process = run_verbose (['/usr/bin/ostree' , 'ls' , '--repo' , repo ,
243
- '--nul-filenames-only' , f"{ buildmeta_commit } " ,
244
- '/usr/lib/modules' ], capture_output = True )
242
+ process = runcmd_verbose (['/usr/bin/ostree' , 'ls' , '--repo' , repo ,
243
+ '--nul-filenames-only' , f"{ buildmeta_commit } " ,
244
+ '/usr/lib/modules' ], capture_output = True )
245
245
moduledir = process .stdout .decode ().split ('\0 ' )[1 ]
246
246
247
247
# copy those files out of the ostree into the iso root dir
248
248
initramfs_img = 'initramfs.img'
249
249
for file in [kernel_img , initramfs_img ]:
250
- run_verbose (['/usr/bin/ostree' , 'checkout' , '--force-copy' , '--repo' , repo ,
251
- '--user-mode' , '--subpath' , os .path .join (moduledir , file ),
252
- f"{ buildmeta_commit } " , tmpisoimagespxe ])
250
+ runcmd_verbose (['/usr/bin/ostree' , 'checkout' , '--force-copy' , '--repo' , repo ,
251
+ '--user-mode' , '--subpath' , os .path .join (moduledir , file ),
252
+ f"{ buildmeta_commit } " , tmpisoimagespxe ])
253
253
# initramfs isn't world readable by default so let's open up perms
254
254
os .chmod (os .path .join (tmpisoimagespxe , file ), 0o644 )
255
255
if file == initramfs_img :
@@ -297,23 +297,23 @@ def generate_iso():
297
297
# Add osmet files
298
298
tmp_osmet = os .path .join (tmpinitrd_rootfs , img_metal_obj ['path' ] + '.osmet' )
299
299
print ('Generating osmet file for 512b metal image' )
300
- run_verbose (['/usr/lib/coreos-assembler/osmet-pack' ,
301
- img_metal , '512' , tmp_osmet , img_metal_checksum ,
302
- 'fast' if args .fast else 'normal' ])
300
+ runcmd_verbose (['/usr/lib/coreos-assembler/osmet-pack' ,
301
+ img_metal , '512' , tmp_osmet , img_metal_checksum ,
302
+ 'fast' if args .fast else 'normal' ])
303
303
if img_metal4k_obj :
304
304
tmp_osmet4k = os .path .join (tmpinitrd_rootfs , img_metal4k_obj ['path' ] + '.osmet' )
305
305
print ('Generating osmet file for 4k metal image' )
306
- run_verbose (['/usr/lib/coreos-assembler/osmet-pack' ,
307
- img_metal4k , '4096' , tmp_osmet4k , img_metal4k_checksum ,
308
- 'fast' if args .fast else 'normal' ])
306
+ runcmd_verbose (['/usr/lib/coreos-assembler/osmet-pack' ,
307
+ img_metal4k , '4096' , tmp_osmet4k , img_metal4k_checksum ,
308
+ 'fast' if args .fast else 'normal' ])
309
309
310
310
# Generate root squashfs
311
311
print (f'Compressing squashfs with { squashfs_compression } ' )
312
312
# Name must be exactly "root.squashfs" because the 20live dracut module
313
313
# makes assumptions about the length of the name in sysroot.mount
314
314
tmp_squashfs = os .path .join (tmpinitrd_rootfs , 'root.squashfs' )
315
- run_verbose (['/usr/lib/coreos-assembler/gf-mksquashfs' ,
316
- img_metal , tmp_squashfs , squashfs_compression ])
315
+ runcmd_verbose (['/usr/lib/coreos-assembler/gf-mksquashfs' ,
316
+ img_metal , tmp_squashfs , squashfs_compression ])
317
317
318
318
# Generate rootfs image
319
319
iso_rootfs = os .path .join (tmpisoimagespxe , rootfs_img )
@@ -340,8 +340,8 @@ def generate_iso():
340
340
cp_reflink (iso_initramfs , pxe_initramfs )
341
341
342
342
# Read and filter kernel arguments for substituting into ISO bootloader
343
- result = run_verbose (['/usr/lib/coreos-assembler/gf-get-kargs' ,
344
- img_metal ], stdout = subprocess .PIPE , text = True )
343
+ result = runcmd_verbose (['/usr/lib/coreos-assembler/gf-get-kargs' ,
344
+ img_metal ], stdout = subprocess .PIPE , text = True )
345
345
kargs_array = [karg for karg in result .stdout .split ()
346
346
if karg .split ('=' )[0 ] not in live_exclude_kargs ]
347
347
kargs_array .append (f"coreos.liveiso={ volid } " )
@@ -445,7 +445,7 @@ def generate_iso():
445
445
446
446
# safely remove things we don't need in the final ISO tree
447
447
for d in ['EFI' , 'isolinux' , 'zipl.prm' ]:
448
- run_verbose (['rm' , '-rf' , os .path .join (tmpisoroot , d )])
448
+ runcmd_verbose (['rm' , '-rf' , os .path .join (tmpisoroot , d )])
449
449
450
450
# grub2-mkrescue is a wrapper around xorriso
451
451
genisoargs = ['grub2-mkrescue' , '-volid' , volid ]
@@ -472,11 +472,11 @@ def generate_iso():
472
472
kernel_img = 'kernel.img'
473
473
474
474
# combine kernel, initramfs and cmdline using the mk-s390image tool
475
- run_verbose (['/usr/bin/mk-s390image' ,
476
- kernel_dest ,
477
- os .path .join (tmpisoimages , 'cdboot.img' ),
478
- '-r' , iso_initramfs ,
479
- '-p' , os .path .join (tmpisoimages , 'cdboot.prm' )])
475
+ runcmd_verbose (['/usr/bin/mk-s390image' ,
476
+ kernel_dest ,
477
+ os .path .join (tmpisoimages , 'cdboot.img' ),
478
+ '-r' , iso_initramfs ,
479
+ '-p' , os .path .join (tmpisoimages , 'cdboot.prm' )])
480
480
# generate .addrsize file for LPAR
481
481
with open (os .path .join (tmpisoimages , 'initrd.addrsize' ), 'wb' ) as addrsize :
482
482
addrsize_data = struct .pack (">iiii" , 0 , int (INITRD_ADDRESS , 16 ), 0 ,
@@ -485,7 +485,7 @@ def generate_iso():
485
485
486
486
# safely remove things we don't need in the final ISO tree
487
487
for d in ['EFI' , 'isolinux' , 'zipl.prm' ]:
488
- run_verbose (['rm' , '-rf' , os .path .join (tmpisoroot , d )])
488
+ runcmd_verbose (['rm' , '-rf' , os .path .join (tmpisoroot , d )])
489
489
490
490
genisoargs = ['/usr/bin/xorrisofs' , '-verbose' ,
491
491
'-volid' , volid ,
@@ -514,10 +514,10 @@ def generate_iso():
514
514
return tarinfo
515
515
516
516
tmpimageefidir = os .path .join (tmpdir , "efi" )
517
- run_verbose (['/usr/bin/ostree' , 'checkout' , '--repo' , repo ,
518
- '--user-mode' , '--subpath' ,
519
- "/usr/lib/bootupd/updates/EFI" ,
520
- buildmeta_commit , tmpimageefidir ])
517
+ runcmd_verbose (['/usr/bin/ostree' , 'checkout' , '--repo' , repo ,
518
+ '--user-mode' , '--subpath' ,
519
+ "/usr/lib/bootupd/updates/EFI" ,
520
+ buildmeta_commit , tmpimageefidir ])
521
521
522
522
# Find name of vendor directory
523
523
vendor_ids = [n for n in os .listdir (tmpimageefidir ) if n != "BOOT" ]
586
586
# so set EFI-SYSTEM for consistency with the metal image.
587
587
# This should not be needed on Fedora or RHEL 9, but seems like
588
588
# a good thing to do anyway.
589
- run_verbose (['virt-make-fs' , '--type=vfat' , '--label=EFI-SYSTEM' ,
590
- efitarfile .name , efibootfile ])
589
+ runcmd_verbose (['virt-make-fs' , '--type=vfat' , '--label=EFI-SYSTEM' ,
590
+ efitarfile .name , efibootfile ])
591
591
592
592
genisoargs += ['-eltorito-alt-boot' ,
593
593
'-efi-boot' , 'images/efiboot.img' ,
@@ -634,12 +634,12 @@ boot
634
634
for f in ensure_glob (os .path .join (tmpisoisolinux , '*.msg' )):
635
635
os .unlink (f )
636
636
637
- run_verbose (genisoargs_final )
637
+ runcmd_verbose (genisoargs_final )
638
638
639
639
# Add MBR, and GPT with ESP, for x86_64 BIOS/UEFI boot when ISO is
640
640
# copied to a USB stick
641
641
if basearch == "x86_64" :
642
- run_verbose (['/usr/bin/isohybrid' , '--uefi' , tmpisofile ])
642
+ runcmd_verbose (['/usr/bin/isohybrid' , '--uefi' , tmpisofile ])
643
643
644
644
genisoargs_minimal = genisoargs + ['-o' , f'{ tmpisofile } .minimal' , tmpisoroot ]
645
645
# The only difference with the miniso is that we drop these two files.
@@ -649,12 +649,12 @@ boot
649
649
# coreos-installer takes care of removing it.
650
650
os .unlink (iso_rootfs )
651
651
os .unlink (miniso_data )
652
- run_verbose (genisoargs_minimal )
652
+ runcmd_verbose (genisoargs_minimal )
653
653
if basearch == "x86_64" :
654
- run_verbose (['/usr/bin/isohybrid' , '--uefi' , f'{ tmpisofile } .minimal' ])
654
+ runcmd_verbose (['/usr/bin/isohybrid' , '--uefi' , f'{ tmpisofile } .minimal' ])
655
655
# this consumes the minimal image
656
- run_verbose (['coreos-installer' , 'pack' , 'minimal-iso' ,
657
- tmpisofile , f'{ tmpisofile } .minimal' , "--consume" ])
656
+ runcmd_verbose (['coreos-installer' , 'pack' , 'minimal-iso' ,
657
+ tmpisofile , f'{ tmpisofile } .minimal' , "--consume" ])
658
658
659
659
buildmeta ['images' ].update ({
660
660
'live-iso' : {
0 commit comments