2016-02-29 14:26:19 +00:00
|
|
|
LICENSE := GPLv2
|
2023-05-25 06:16:15 +00:00
|
|
|
VERSION := individual (see sources)
|
2023-08-18 17:45:34 +00:00
|
|
|
DOWNLOADS := lxip.archive
|
2020-07-09 13:10:21 +00:00
|
|
|
|
2014-10-29 17:52:47 +00:00
|
|
|
#
|
|
|
|
# IP stack sources
|
|
|
|
#
|
|
|
|
SRC_DIR_LXIP := src/lib/lxip
|
2023-05-25 06:16:15 +00:00
|
|
|
VERSION(lxip) := 4.4.3
|
|
|
|
URL(lxip) := https://www.kernel.org/pub/linux/kernel/v4.x/linux-${VERSION(lxip)}.tar.xz
|
2018-05-07 14:45:50 +00:00
|
|
|
SHA(lxip) := 0b379cb19bbd7e38fc5a9a000ea927db55cce519a7400ec7fa705c581a6491dd
|
2014-10-29 17:52:47 +00:00
|
|
|
DIR(lxip) := $(SRC_DIR_LXIP)
|
2023-05-25 06:16:15 +00:00
|
|
|
TAR_OPT(lxip) := --strip-components=1 --files-from - < <(sed 's/-x.x.x/-${VERSION(lxip)}/g' $(REP_DIR)/lxip.list)
|
2014-10-29 17:52:47 +00:00
|
|
|
HASH_INPUT += $(REP_DIR)/lxip.list
|
|
|
|
|
2016-02-29 14:26:19 +00:00
|
|
|
#
|
|
|
|
# Patches
|
|
|
|
#
|
2023-08-31 12:57:23 +00:00
|
|
|
PATCHES += patches/legacy_lxip_icmp.patch
|
|
|
|
PATCHES += patches/legacy_lxip_ip_config.patch
|
|
|
|
PATCHES += patches/legacy_lxip_log2.patch
|
|
|
|
PATCHES += patches/legacy_lxip_netlink.patch
|
|
|
|
PATCHES += patches/legacy_lxip_request_sock.patch
|
|
|
|
PATCHES += patches/legacy_lxip_sk_wq.patch
|
|
|
|
PATCHES += patches/legacy_lxip_skbuff_cast.patch
|
2014-05-20 14:09:29 +00:00
|
|
|
|
2014-11-22 14:13:43 +00:00
|
|
|
#IP stack
|
2014-10-29 17:52:47 +00:00
|
|
|
LXIP_OPT = -p1 -d$(SRC_DIR_LXIP)
|
2023-08-31 12:57:23 +00:00
|
|
|
PATCH_OPT(patches/legacy_lxip_icmp.patch) := $(LXIP_OPT)
|
|
|
|
PATCH_OPT(patches/legacy_lxip_ip_config.patch) := $(LXIP_OPT)
|
|
|
|
PATCH_OPT(patches/legacy_lxip_log2.patch) := $(LXIP_OPT)
|
|
|
|
PATCH_OPT(patches/legacy_lxip_netlink.patch) := $(LXIP_OPT)
|
|
|
|
PATCH_OPT(patches/legacy_lxip_request_sock.patch) := $(LXIP_OPT)
|
|
|
|
PATCH_OPT(patches/legacy_lxip_sk_wq.patch) := $(LXIP_OPT)
|
|
|
|
PATCH_OPT(patches/legacy_lxip_skbuff_cast.patch) := $(LXIP_OPT)
|
2014-05-20 14:09:29 +00:00
|
|
|
|
|
|
|
# vi: set ft=make :
|