mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-19 00:50:54 +00:00
Add missing select NEED_BPF_TOOLCHAIN in order to ensure that the toolchain actually gets built. Fixes: https://github.com/openwrt/openwrt/issues/17926 Signed-off-by: Felix Fietkau <nbd@nbd.name> (cherry picked from commit 04570f5ee2dfe6609c22d2d21678b14cd3314309)
19 lines
618 B
Plaintext
19 lines
618 B
Plaintext
config SDK
|
|
bool "Build the OpenWrt SDK"
|
|
depends on !EXTERNAL_TOOLCHAIN
|
|
default BUILDBOT
|
|
help
|
|
This is essentially a stripped-down version of the buildroot
|
|
with a precompiled toolchain. It can be used to develop and
|
|
test packages for OpenWrt before including them in the buildroot
|
|
|
|
config SDK_LLVM_BPF
|
|
bool "Build the LLVM-BPF toolchain tarball"
|
|
depends on BPF_TOOLCHAIN_BUILD_LLVM
|
|
select NEED_BPF_TOOLCHAIN
|
|
default BUILDBOT
|
|
help
|
|
This is a tarball of the precompiled LLVM toolchain suitable
|
|
for unpacking into the buildroot/SDK. It is used to build packages
|
|
that ship with eBPF kernel modules
|