On 21.02.22 11:15, Michael Haener wrote: > For native builds where only tools are needed, the libpci > detection and the bootloader build can be disabled. > --- > Makefile.am | 2 ++ > configure.ac | 9 ++++++++- > 2 files changed, 10 insertions(+), 1 deletion(-) > > diff --git a/Makefile.am b/Makefile.am > index 7686577..f8e094a 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -135,6 +135,7 @@ install-exec-hook: > # > efi_loadername = efibootguard$(MACHINE_TYPE_NAME).efi > > +if BOOTLOADER > if ARCH_AARCH64 > efi_sources_watchdogs = > else > @@ -249,6 +250,7 @@ $(efi_loadername): $(efi_solib) > $(AM_V_GEN) $(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic \ > -j .dynsym -j .rel -j .rela -j .reloc -j .init_array \ > -j .rela.got -j .rela.data $(objcopy_format) $< $@ > +endif > > $(top_builddir)/tools/bg_setenv-bg_setenv.o: $(GEN_VERSION_H) > > diff --git a/configure.ac b/configure.ac > index 440631d..779ada4 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -179,7 +179,14 @@ if test "x$PKG_CONFIG" = "xno"; then > AC_MSG_ERROR([You need to install pkg-config]) > fi > PKG_CHECK_MODULES(LIBCHECK, check) > -PKG_CHECK_MODULES(LIBPCI, libpci) > + > +AC_ARG_ENABLE([bootloader], > + AS_HELP_STRING([--disable-bootloader], [Compile the bootloader disabled, > only make the tools])) > + > +AS_IF([test "x$enable_bootloader" != "xno"], [ > + PKG_CHECK_MODULES(LIBPCI, libpci) > +]) > +AM_CONDITIONAL([BOOTLOADER], [test "x$enable_bootloader" != "xno"])
AC_MSG_RESULT should be added for such an important control. Looks good otherwise. Jan > > dnl Python > AC_PATH_PROGS(PYTHON, [python3 python3.9 python3.8 python3.7 python3.6 > python2.7 python2], no) -- Siemens AG, Technology Competence Center Embedded Linux -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/5424c976-2e45-b5e6-5731-3899f2be007b%40siemens.com.
