Skip to content

Commit

Permalink
Merge pull request #1259 from jkonecny12/master-fix-add_bootargs
Browse files Browse the repository at this point in the history
Fix boot_args() processing
  • Loading branch information
jkonecny12 committed Jul 22, 2024
2 parents 0013126 + 8a58841 commit ea8df74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ibft.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ prepare_disks() {
boot_args() {
. ${tmpdir}/httpd_url
ipxe_script_url="${httpd_url}${ipxe_script}"
echo "--boot kernel=${ipxe_image},kernel_args='ifconf -c dhcp net0 && chain ${ipxe_script_url}'"
echo "kernel=${ipxe_image},kernel_args='ifconf -c dhcp net0 && chain ${ipxe_script_url}'"
}

prepare() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/launcher/lib/shell_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def additional_runner_args(self):
def boot_args(self):
out = self._run_shell_func("boot_args")
out.check_ret_code_with_exception()
return out.stdout_as_array
return out.stdout

def get_timeout(self):
"""Per test timeout override.
Expand Down

0 comments on commit ea8df74

Please sign in to comment.