blob: acbe5b9b69b3ed221db8e5c222099fbf957181ea [file] [log] [blame]
developer4a9808c2023-11-29 13:55:49 +08001#
2# Copyright (C) 2023 Mediatek Ltd.
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=fips_test_tool
11PKG_VERSION:=1.0
12
13PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
14
15include $(INCLUDE_DIR)/package.mk
16
17define Package/fips_test_tool
18 SECTION:=Utilities
19 CATEGORY:=Utilities
20 TITLE:=FIPS_TEST_TOOL
21 SUBMENU:=FIPS
22 DEPENDS:=+python3-light
23endef
24
25define Package/fips_test_tool/description
26 fips_test_tool is a script to pass fips140-3.
27 You can run this tool to pass test vector
28 from NIST in local.
29endef
30
31Build/Compile/Default:=
32
33define Package/fips_test_tool/install
34 $(CP) ./files/* $(1)/
35endef
36
37$(eval $(call BuildPackage,fips_test_tool))