ca-certificates: Add certificate bundle package
Some SSL applications requires a certificates bundle rather than a directory containing certificates. For thos applications we build the ca-bundle package Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
This commit is contained in:
parent
83049ed944
commit
3015af9647
1 changed files with 12 additions and 0 deletions
|
@ -26,6 +26,13 @@ define Package/ca-certificates
|
||||||
PKGARCH:=all
|
PKGARCH:=all
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/ca-bundle
|
||||||
|
SECTION:=base
|
||||||
|
CATEGORY:=Base system
|
||||||
|
TITLE:=System CA certificates as a bundle
|
||||||
|
PKGARCH:=all
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/Install
|
define Build/Install
|
||||||
mkdir -p \
|
mkdir -p \
|
||||||
$(PKG_INSTALL_DIR)/usr/sbin \
|
$(PKG_INSTALL_DIR)/usr/sbin \
|
||||||
|
@ -47,4 +54,9 @@ define Package/ca-certificates/install
|
||||||
done
|
done
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/ca-bundle/install
|
||||||
|
$(INSTALL_DIR) $(1)/etc/ssl/certs
|
||||||
|
cat $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt >$(1)/etc/ssl/certs/ca-certificates.crt
|
||||||
|
endef
|
||||||
$(eval $(call BuildPackage,ca-certificates))
|
$(eval $(call BuildPackage,ca-certificates))
|
||||||
|
$(eval $(call BuildPackage,ca-bundle))
|
||||||
|
|
Loading…
Reference in a new issue