Просмотр исходного кода

target: install apk-mbedtls by default

since the split of APK in mbedtls and openssl version, installing `apk`
as default package doesn't do the trick anymore. Instead specify
`apk-mbedtls` directly.

Signed-off-by: Paul Spooren <[email protected]>
Link: https://github.com/openwrt/openwrt/pull/15543
Signed-off-by: Christian Marangi <[email protected]>
Paul Spooren 1 год назад
Родитель
Сommit
2c769cff23
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      include/target.mk

+ 1 - 1
include/target.mk

@@ -27,7 +27,7 @@ DEFAULT_PACKAGES:=\
 	urngd
 
 ifdef CONFIG_USE_APK
-DEFAULT_PACKAGES+=apk
+DEFAULT_PACKAGES+=apk-mbedtls
 else
 DEFAULT_PACKAGES+=opkg
 endif