Meta: Update scripts/build-all
This commit is contained in:
parent
dd86ef6a44
commit
72d626c0f1
1 changed files with 6 additions and 0 deletions
|
@ -186,6 +186,12 @@ def generate_iso_c_file():
|
||||||
if res:
|
if res:
|
||||||
raise ValueError(step_error_message + str(res))
|
raise ValueError(step_error_message + str(res))
|
||||||
|
|
||||||
|
if 'custom_files_path' in build_options:
|
||||||
|
copy_custom_files_cmd_line = 'rsync -av --inplace --progress ' + build_options['custom_files_path'] + ' ' + redsea_path
|
||||||
|
res = os.system(copy_custom_files_cmd_line)
|
||||||
|
if res:
|
||||||
|
raise ValueError(step_error_message + str(res))
|
||||||
|
|
||||||
# Fixup addresses for Image.HC
|
# Fixup addresses for Image.HC
|
||||||
image_bin_path = redsea_path + '/build/bin/image'
|
image_bin_path = redsea_path + '/build/bin/image'
|
||||||
image_hc_path = redsea_path + '/System/Utilities/Image.HC'
|
image_hc_path = redsea_path + '/System/Utilities/Image.HC'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue