diff options
author | Cupertino Miranda <cupertino.miranda@oracle.com> | 2022-12-08 00:04:30 +0000 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-12-14 17:11:02 +1300 |
commit | db4b7179ed83cedd87e5b79ef39e93a7b108238f (patch) | |
tree | 3b047861b4ad929640e09107d6ee5defe6dceb33 /scripts | |
parent | 7f80447c5f66f588e57eb3da087b27eb2b0c8eec (diff) | |
download | crosstool-ng-db4b7179ed83cedd87e5b79ef39e93a7b108238f.tar.gz crosstool-ng-db4b7179ed83cedd87e5b79ef39e93a7b108238f.tar.bz2 crosstool-ng-db4b7179ed83cedd87e5b79ef39e93a7b108238f.zip |
Add BPF architecture target support
BPF is a virtual machine and associated ISA that resides in the Linux
kernel. Initially intended for user-level packet capture and filtering,
BPF is nowadays generalized to serve as a general-purpose infrastructure
also for non-networking purposes.
Signed-off-by: Cupertino Miranda <cupertino.miranda@oracle.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/arch/bpf.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/build/arch/bpf.sh b/scripts/build/arch/bpf.sh new file mode 100644 index 00000000..de427283 --- /dev/null +++ b/scripts/build/arch/bpf.sh @@ -0,0 +1,7 @@ +# Compute BPF-specific values + +CT_DoArchTupleValues() { + CT_TARGET_ARCH=bpf + CT_TARGET_VENDOR=unknown + CT_TARGET_SYS=none +} |