mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +00:00
c40748aa25
This addresses multiple issues: * Issue #63: initrd is build fresh each time, so tracked files do not matter. * Issue #144: build time configuration * Issue #123: allows us to customize the startup experience * Issue #122: manual start-xen will go away * Issue #25: tpmtotp PCRs are updated after reading the secret * Issue #16: insmod now meaures modules
24 lines
624 B
Plaintext
24 lines
624 B
Plaintext
modules-$(CONFIG_QRENCODE) += qrencode
|
|
|
|
qrencode_version := 3.4.4
|
|
qrencode_dir := qrencode-$(qrencode_version)
|
|
qrencode_tar := qrencode-$(qrencode_version).tar.gz
|
|
qrencode_url := https://fukuchi.org/works/qrencode/$(qrencode_tar)
|
|
qrencode_hash := e794e26a96019013c0e3665cb06b18992668f352c5553d0a553f5d144f7f2a72
|
|
|
|
qrencode_libraries := .libs/libqrencode.so.3
|
|
|
|
qrencode_configure := ./configure \
|
|
CC="$(heads_cc)" \
|
|
--prefix "" \
|
|
--without-tools \
|
|
--host i386-elf-linux \
|
|
|
|
qrencode_target := $(MAKE_JOBS) \
|
|
&& $(MAKE) \
|
|
-C "$(build)/$(qrencode_dir)" \
|
|
prefix="$(INSTALL)" \
|
|
install
|
|
|
|
qrencode_depends := $(musl_dep)
|