mirror of
https://github.com/linuxboot/heads.git
synced 2025-01-31 00:24:17 +00:00
Build cryptsetup and install it into the initrd
This commit is contained in:
parent
0aae22d67c
commit
ff5639a542
19
Makefile
19
Makefile
@ -5,7 +5,7 @@ build := $(pwd)/build
|
|||||||
config := $(pwd)/build
|
config := $(pwd)/build
|
||||||
|
|
||||||
# Currently supported targets are x230, chell and qemu
|
# Currently supported targets are x230, chell and qemu
|
||||||
BOARD ?= x230
|
BOARD ?= qemu
|
||||||
|
|
||||||
all: $(BOARD).rom
|
all: $(BOARD).rom
|
||||||
|
|
||||||
@ -72,13 +72,14 @@ define define_module =
|
|||||||
touch "$$@"
|
touch "$$@"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Copy our stored config file into the unpacked directory
|
ifeq "$($1_config)" ""
|
||||||
ifdef $1_config
|
# There is no official .config file
|
||||||
$(build)/$($1_dir)/.config: config/$($1_config) $(build)/$($1_dir)/.canary
|
|
||||||
cp -a "$$<" "$$@"
|
|
||||||
else
|
|
||||||
$(build)/$($1_dir)/.config: $(build)/$($1_dir)/.canary
|
$(build)/$($1_dir)/.config: $(build)/$($1_dir)/.canary
|
||||||
touch "$$@"
|
touch "$$@"
|
||||||
|
else
|
||||||
|
# Copy the stored config file into the unpacked directory
|
||||||
|
$(build)/$($1_dir)/.config: config/$($1_config) $(build)/$($1_dir)/.canary
|
||||||
|
cp -a "$$<" "$$@"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
@ -143,6 +144,7 @@ endef
|
|||||||
|
|
||||||
$(foreach _, $(call bins,kexec), $(eval $(call initrd_bin_add,$_)))
|
$(foreach _, $(call bins,kexec), $(eval $(call initrd_bin_add,$_)))
|
||||||
$(foreach _, $(call bins,tpmtotp), $(eval $(call initrd_bin_add,$_)))
|
$(foreach _, $(call bins,tpmtotp), $(eval $(call initrd_bin_add,$_)))
|
||||||
|
$(foreach _, $(call bins,cryptsetup), $(eval $(call initrd_bin_add,$_)))
|
||||||
|
|
||||||
$(foreach _, $(call libs,tpmtotp), $(eval $(call initrd_lib_add,$_)))
|
$(foreach _, $(call libs,tpmtotp), $(eval $(call initrd_lib_add,$_)))
|
||||||
$(foreach _, $(call libs,mbedtls), $(eval $(call initrd_lib_add,$_)))
|
$(foreach _, $(call libs,mbedtls), $(eval $(call initrd_lib_add,$_)))
|
||||||
@ -171,10 +173,7 @@ $(build)/$(coreboot_dir)/util/cbmem/cbmem: $(build)/$(coreboot_dir)/.canary
|
|||||||
# Mounting dm-verity file systems requires dm-verity to be installed
|
# Mounting dm-verity file systems requires dm-verity to be installed
|
||||||
# We use gpgv to verify the signature on the root hash.
|
# We use gpgv to verify the signature on the root hash.
|
||||||
# Both of these should be brought in as modules instead of from /sbin
|
# Both of these should be brought in as modules instead of from /sbin
|
||||||
#initrd_bins += initrd/bin/cryptsetup
|
#initrd_bins += initrd/bin/dmsetup
|
||||||
initrd/bin/cryptsetup: /sbin/cryptsetup
|
|
||||||
cp "$<" "$@"
|
|
||||||
initrd_bins += initrd/bin/dmsetup
|
|
||||||
initrd/bin/dmsetup: /sbin/dmsetup
|
initrd/bin/dmsetup: /sbin/dmsetup
|
||||||
cp "$<" "$@"
|
cp "$<" "$@"
|
||||||
initrd_bins += initrd/bin/gpgv
|
initrd_bins += initrd/bin/gpgv
|
||||||
|
@ -7,6 +7,10 @@ cryptsetup_url := https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptse
|
|||||||
cryptsetup_hash := af2b04e8475cf40b8d9ffd97a1acfa73aa787c890430afd89804fb544d6adc02
|
cryptsetup_hash := af2b04e8475cf40b8d9ffd97a1acfa73aa787c890430afd89804fb544d6adc02
|
||||||
|
|
||||||
cryptsetup_configure := ./configure \
|
cryptsetup_configure := ./configure \
|
||||||
--disable-gcrypt-pbkdf2 \
|
--disable-gcrypt-pbkdf2 \
|
||||||
--with-crypto_backend=kernel
|
--with-crypto_backend=kernel \
|
||||||
cryptsetup_output :=
|
|
||||||
|
cryptsetup_output := \
|
||||||
|
src/.libs/cryptsetup \
|
||||||
|
src/.libs/veritysetup \
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user