Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) # SPDX-License-Identifier: GPL-2.0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) # Makefile for net selftests
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) CFLAGS =  -Wall -Wl,--no-as-needed -O2 -g
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) CFLAGS += -I../../../../usr/include/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh netdevice.sh \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 	      rtnetlink.sh xfrm_policy.sh test_blackhole_dev.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) TEST_PROGS += fib_tests.sh fib-onlink-tests.sh pmtu.sh udpgso.sh ip_defrag.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) TEST_PROGS += udpgso_bench.sh fib_rule_tests.sh msg_zerocopy.sh psock_snd.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) TEST_PROGS += udpgro_bench.sh udpgro.sh test_vxlan_under_vrf.sh reuseport_addr_any.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) TEST_PROGS += test_vxlan_fdb_changelink.sh so_txtime.sh ipv6_flowlabel.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) TEST_PROGS += tcp_fastopen_backup_key.sh fcnal-test.sh l2tp.sh traceroute.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) TEST_PROGS += fin_ack_lat.sh fib_nexthop_multiprefix.sh fib_nexthops.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) TEST_PROGS += altnames.sh icmp_redirect.sh ip6_gre_headroom.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) TEST_PROGS += route_localnet.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) TEST_PROGS += reuseaddr_ports_exhausted.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) TEST_PROGS += txtimestamp.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) TEST_PROGS += vrf-xfrm-tests.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) TEST_PROGS += rxtimestamp.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) TEST_PROGS += devlink_port_split.py
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) TEST_PROGS += drop_monitor_tests.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) TEST_PROGS += vrf_route_leaking.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) TEST_PROGS_EXTENDED := in_netns.sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) TEST_GEN_FILES =  socket nettest
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) TEST_GEN_FILES += psock_fanout psock_tpacket msg_zerocopy reuseport_addr_any
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) TEST_GEN_FILES += tcp_mmap tcp_inq psock_snd txring_overwrite
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) TEST_GEN_FILES += udpgso udpgso_bench_tx udpgso_bench_rx ip_defrag
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) TEST_GEN_FILES += so_txtime ipv6_flowlabel ipv6_flowlabel_mgr
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) TEST_GEN_FILES += tcp_fastopen_backup_key
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) TEST_GEN_FILES += fin_ack_lat
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) TEST_GEN_FILES += reuseaddr_ports_exhausted
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) TEST_GEN_FILES += hwtstamp_config rxtimestamp timestamping txtimestamp
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) TEST_GEN_FILES += ipsec
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) TEST_GEN_PROGS = reuseport_bpf reuseport_bpf_cpu reuseport_bpf_numa
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) TEST_GEN_PROGS += reuseport_dualstack reuseaddr_conflict tls
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) KSFT_KHDR_INSTALL := 1
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) include ../lib.mk
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) $(OUTPUT)/reuseport_bpf_numa: LDLIBS += -lnuma
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) $(OUTPUT)/tcp_mmap: LDLIBS += -lpthread
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) $(OUTPUT)/tcp_inq: LDLIBS += -lpthread