From fb7cc3725d5963d9fac1531cea83d489610e3476 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Tue, 1 Mar 2011 14:43:18 -0500 Subject: [PATCH] pass kernel arguments correctly to the build.sh --- PLC/Methods/GetBootMedium.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Methods/GetBootMedium.py b/PLC/Methods/GetBootMedium.py index 07e9bd2..3ec6fab 100644 --- a/PLC/Methods/GetBootMedium.py +++ b/PLC/Methods/GetBootMedium.py @@ -428,7 +428,7 @@ class GetBootMedium(Method): if tag['tagname'] == 'kvariant': build_sh_spec['variant'] = tag['value'] if tag['tagname'] == 'kargs': - build_sh_spec['kargs'].append(tag['value'].split()) + build_sh_spec['kargs'] += tag['value'].split() if tag['tagname'] == 'no-hangcheck': build_sh_spec['kargs'].append('hcheck_reboot0') # then options can override tags -- 2.43.0