diff options
| author | Paul Spooren | 2024-05-23 22:08:56 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-06-11 21:58:15 +0000 |
| commit | 2c769cff234c514ce00f2dc760a67e909dc2bbb7 (patch) | |
| tree | 16c9ae981abd14530526c187e2b78d22225d61b6 | |
| parent | 2951e0a80e9f9a8d11e5bc04a89d9c7aa0623919 (diff) | |
| download | openwrt-2c769cff234c514ce00f2dc760a67e909dc2bbb7.tar.gz | |
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 <mail@aparcar.org>
Link: https://github.com/openwrt/openwrt/pull/15543
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | include/target.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/target.mk b/include/target.mk index 8b81b54624..e2274171a9 100644 --- a/include/target.mk +++ b/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 |