From 72d626c0f1606bfd404d4a8007ca3215848ecdc5 Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Mon, 14 Apr 2025 10:34:37 -0400 Subject: [PATCH] Meta: Update scripts/build-all --- scripts/build-all | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/build-all b/scripts/build-all index 73ab157..22f0a82 100755 --- a/scripts/build-all +++ b/scripts/build-all @@ -186,6 +186,12 @@ def generate_iso_c_file(): if 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 image_bin_path = redsea_path + '/build/bin/image' image_hc_path = redsea_path + '/System/Utilities/Image.HC'