Message ID | 20240315130519.2378765-2-sunilvl@ventanamicro.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add support for RISC-V ACPI tests | expand |
On Fri, Mar 15, 2024 at 06:35:08PM +0530, Sunil V L wrote: > UefiTestToolsPkg which should use edk2-build.py needs --module parameter > support. Add this optional parameter handling. I don't think this is needed. By default everything listed in [Components] should be built, which is just that one module we have ;) take care, Gerd
On Fri, Mar 15, 2024 at 03:13:44PM +0100, Gerd Hoffmann wrote: > On Fri, Mar 15, 2024 at 06:35:08PM +0530, Sunil V L wrote: > > UefiTestToolsPkg which should use edk2-build.py needs --module parameter > > support. Add this optional parameter handling. > > I don't think this is needed. By default everything listed in > [Components] should be built, which is just that one module we > have ;) > Ahh yes. Makes sense. Let me remove this in next revision of the series. Thanks! Sunil
diff --git a/roms/edk2-build.py b/roms/edk2-build.py index e564765aaa..3bfe200929 100755 --- a/roms/edk2-build.py +++ b/roms/edk2-build.py @@ -192,6 +192,9 @@ def build_one(cfg, build, jobs = None, silent = False, nologs = False): cmdline += [ '-n', jobs ] for arch in b['arch'].split(): cmdline += [ '-a', arch ] + if 'module' in b: + for module in b['module'].split(): + cmdline += [ '-m', module ] if 'opts' in b: for name in b['opts'].split(): section = 'opts.' + name
UefiTestToolsPkg which should use edk2-build.py needs --module parameter support. Add this optional parameter handling. Signed-off-by: Sunil V L <sunilvl@ventanamicro.com> --- roms/edk2-build.py | 3 +++ 1 file changed, 3 insertions(+)