mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
5e43bcd2f4
* overwriting a hotp secret is not possible anymore * make sure to delete the hotp secret before setting a new one * requires one additional user presence check during HOTP setup * bump to v1.5 Signed-off-by: Markus Meissner <coder@safemailbox.de>
39 lines
1.5 KiB
Makefile
39 lines
1.5 KiB
Makefile
modules-$(CONFIG_HOTPKEY) += hotp-verification
|
|
|
|
hotp-verification_depends := libusb $(musl_dep)
|
|
|
|
# v1.5
|
|
hotp-verification_version := 70c04f51387eee8f777e943ba83b6405764a3cd2
|
|
hotp-verification_dir := hotp-verification-$(hotp-verification_version)
|
|
hotp-verification_tar := nitrokey-hotp-verification-$(hotp-verification_version).tar.gz
|
|
hotp-verification_url := https://github.com/Nitrokey/nitrokey-hotp-verification/archive/$(hotp-verification_version).tar.gz
|
|
hotp-verification_hash := 5244b6b514117f955a03be2363fd51567a125cb8dc904d1bd89351be27eb8bb3
|
|
|
|
hotp-verification_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
|
|
hotp-verification_output := \
|
|
hotp_verification \
|
|
hotp_initialize
|
|
|
|
hotp-verification_configure := \
|
|
INSTALL="$(INSTALL)" \
|
|
CROSS="$(CROSS)" \
|
|
$(CROSS_TOOLS) $(MAKE) LDFLAGS="$(INSTALL)/lib/libusb-1.0.so" GITVERSION="" LIBUSB_FLAGS="-I$(INSTALL)/include/libusb-1.0" PKGCONFIG="" && $(MAKE) install INSTALL="$(INSTALL)"
|
|
|
|
hotp-verification_depends += hidapi
|
|
modules-y += hidapi
|
|
|
|
hidapi_version := e5ae0d30a523c565595bdfba3d5f2e9e1faf0bd0
|
|
hidapi_dir := hotp-verification-$(hotp-verification_version)/hidapi
|
|
hidapi_tar := hidapi-$(hidapi_version).tar.xz
|
|
hidapi_url := https://github.com/Nitrokey/hidapi/archive/$(hidapi_version).tar.gz
|
|
hidapi_hash := acc2a5089a8917085c2b3ebe9446065a21c760ba7e13cb54917043c4122188e0
|
|
|
|
|
|
## hidapi will be built as part of hotp-verification
|
|
## so nothing to do here (but need make to be happy)
|
|
hidapi_output := .built
|
|
hidapi_configure := echo -e 'all:\n\ttouch .built' > Makefile
|