mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-21 05:53:14 +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
14 lines
452 B
Plaintext
14 lines
452 B
Plaintext
modules-$(CONFIG_XEN) += xen
|
|
|
|
# We extract the entire Xen tree, but only use the xen/xen hypervisor
|
|
# portion since Qubes provides the rest of it.
|
|
xen_version := 4.6.3
|
|
xen_dir := xen-$(xen_version)/xen
|
|
xen_tar := xen-$(xen_version).tar.gz
|
|
xen_url := http://bits.xensource.com/oss-xen/release/4.6.3/xen-4.6.3.tar.gz
|
|
xen_hash := 02badfce9a037bd1bd4a94210c1f6b85467746216c71795805102b514bcf1fc4
|
|
|
|
xen_output :=
|
|
xen_configure :=
|
|
xen_target := $(MAKE_JOBS)
|