Skip to content

Commit b5d2e9b

Browse files
committed
Fix LORIX One Wiregard kernel dependencies.
1 parent e6e3ab3 commit b5d2e9b

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ FROM ubuntu:bionic
44
ENV PROJECT_PATH=/lora-gateway-os
55
WORKDIR $PROJECT_PATH
66

7-
RUN apt update
8-
RUN apt install -y \
7+
RUN apt update && \
8+
apt install -y \
99
gawk \
1010
wget \
1111
git-core \
@@ -21,7 +21,9 @@ RUN apt install -y \
2121
python \
2222
vim \
2323
locales \
24-
cpio
24+
cpio \
25+
screen \
26+
libncurses-dev
2527

2628
# Set the locale
2729
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \

docs/content/overview/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ menu:
88

99
# Changelog
1010

11+
## v3.0.0test3
12+
13+
### LORIX One
14+
15+
* Fix Wiregard kernel module dependencies.
16+
1117
## v3.0.0test2
1218

1319
### General

layers/bsp/meta-wifx/recipes-kernel/linux/linux-at91-4.4/sama5d4_lorix_one_defconfig

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,11 @@ CONFIG_XFRM=y
575575
# CONFIG_NET_KEY is not set
576576
CONFIG_INET=y
577577
CONFIG_IP_MULTICAST=y
578-
# CONFIG_IP_ADVANCED_ROUTER is not set
578+
CONFIG_IP_ADVANCED_ROUTER=y
579+
# CONFIG_IP_FIB_TRIE_STATS is not set
580+
CONFIG_IP_MULTIPLE_TABLES=y
581+
# CONFIG_IP_ROUTE_MULTIPATH is not set
582+
# CONFIG_IP_ROUTE_VERBOSE is not set
579583
CONFIG_IP_ROUTE_CLASSID=y
580584
CONFIG_IP_PNP=y
581585
CONFIG_IP_PNP_DHCP=y
@@ -586,8 +590,8 @@ CONFIG_IP_PNP_RARP=y
586590
CONFIG_NET_IP_TUNNEL=y
587591
# CONFIG_IP_MROUTE is not set
588592
# CONFIG_SYN_COOKIES is not set
589-
# CONFIG_NET_UDP_TUNNEL is not set
590-
# CONFIG_NET_FOU is not set
593+
CONFIG_NET_UDP_TUNNEL=y
594+
CONFIG_NET_FOU=y
591595
# CONFIG_NET_FOU_IP_TUNNELS is not set
592596
# CONFIG_INET_AH is not set
593597
# CONFIG_INET_ESP is not set
@@ -827,6 +831,7 @@ CONFIG_BQL=y
827831
# CONFIG_IRDA is not set
828832
# CONFIG_BT is not set
829833
# CONFIG_AF_RXRPC is not set
834+
CONFIG_FIB_RULES=y
830835
CONFIG_WIRELESS=y
831836
# CONFIG_CFG80211 is not set
832837
# CONFIG_LIB80211 is not set
@@ -1117,6 +1122,7 @@ CONFIG_NET_CORE=y
11171122
# CONFIG_MACVLAN is not set
11181123
# CONFIG_IPVLAN is not set
11191124
# CONFIG_VXLAN is not set
1125+
# CONFIG_GENEVE is not set
11201126
# CONFIG_NETCONSOLE is not set
11211127
# CONFIG_NETPOLL is not set
11221128
# CONFIG_NET_POLL_CONTROLLER is not set

meta/conf/distro/lora-gateway-os.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DISTRO = "lora-gateway-os"
22
DISTRO_NAME = "LoRa Gateway OS"
3-
DISTRO_VERSION = "3.0.0test2"
3+
DISTRO_VERSION = "3.0.0test3"
44

55
PACKAGE_CLASSES = "package_ipk"
66
IMAGE_INSTALL_append = " opkg "

0 commit comments

Comments
 (0)