bump version to 2022.02.9

add miyoo_defconfig
This commit is contained in:
tiopex
2023-01-31 13:11:45 +01:00
parent 1fa746c353
commit dcdaa3599c
8423 changed files with 184305 additions and 91107 deletions

View File

@@ -0,0 +1,37 @@
vde_l3: Add static to inline functions
Add static to inline functions to avoid the following build failure
with BR2_OPTIMIZE_0:
/home/autobuild/autobuild/instance-11/output-1/host/lib/gcc/mips64-buildroot-linux-uclibc/10.3.0/../../../../mips64-buildroot-linux-uclibc/bin/ld: vde_l3.o: in function `ip_output_ready':
vde_l3.c:(.text+0xb30): undefined reference to `iphead'
Fixes:
- http://autobuild.buildroot.org/results/5eeefcdac0b8974a424a885fdc2e82f7cb4b617d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
diff -Nura vde2-2.3.2.orig/src/vde_l3/vde_l3.c vde2-2.3.2/src/vde_l3/vde_l3.c
--- vde2-2.3.2.orig/src/vde_l3/vde_l3.c 2022-04-21 11:05:17.393452698 +0200
+++ vde2-2.3.2/src/vde_l3/vde_l3.c 2022-04-21 11:10:36.509804404 +0200
@@ -100,17 +100,17 @@
};
-inline struct vde_ethernet_header *ethhead(struct vde_buff *vdb)
+static inline struct vde_ethernet_header *ethhead(struct vde_buff *vdb)
{
return (struct vde_ethernet_header*)(vdb->data);
}
-inline struct iphdr *iphead(struct vde_buff *vdb)
+static inline struct iphdr *iphead(struct vde_buff *vdb)
{
return (struct iphdr*)(vdb->data + 14);
}
-inline void *payload(struct vde_buff *vdb)
+static inline void *payload(struct vde_buff *vdb)
{
return (uint8_t*)(vdb->data + 14 + sizeof(struct iphdr));
}

View File

@@ -9,6 +9,8 @@ VDE2_SOURCE = vde2-$(VDE2_VERSION).tar.bz2
VDE2_SITE = http://downloads.sourceforge.net/project/vde/vde2/$(VDE2_VERSION)
VDE2_LICENSE = GPL-2.0+, LGPL-2.1+, BSD-3-Clause
VDE2_LICENSE_FILES = COPYING COPYING.libvdeplug COPYING.slirpvde
VDE2_CPE_ID_VENDOR = vde_project
VDE2_CPE_ID_PRODUCT = vde
VDE2_INSTALL_STAGING = YES
# We touch configure.ac, so we need to autoreconf