mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 21:17:55 +00:00
5fd9878d28
As part of issue #1, we should build all libraries and programs that we deploy into the Heads initrd. This modifies the module configurations for all of them to install into heads/install so that we can build against them. Add dmsetup, cryptsetup and veritysetup (issue #46). Build gpgv 1.4 as a standalone tool (issue #23). Modify populate-lib to use the install directory by setting LD_LIBRARY_PATH (issue #35).
20 lines
511 B
Plaintext
20 lines
511 B
Plaintext
modules += lvm2
|
|
|
|
lvm2_version := 2.02.168
|
|
lvm2_dir := LVM2.$(lvm2_version)
|
|
lvm2_tar := LVM2.$(lvm2_version).tgz
|
|
lvm2_url := http://mirrors.kernel.org/sourceware/lvm2/$(lvm2_tar)
|
|
lvm2_hash := 23a3d1cddd41b3ef51812ebf83e9fa491f502fe74130d4263be327a91914660d
|
|
|
|
lvm2_configure := ./configure \
|
|
--prefix $(INSTALL) \
|
|
--disable-selinux \
|
|
--disable-udev-systemd-background-jobs \
|
|
--disable-realtime \
|
|
|
|
lvm2_target := -j 8 install_device-mapper
|
|
|
|
lvm2_libraries := libdm/libdevmapper.so
|
|
|
|
lvm2_output := tools/dmsetup
|