Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rpi-kernel: add support for LXD 4.2+.
@ 2020-07-17  7:39 fosslinux
  2020-07-17  7:41 ` [PR PATCH] [Updated] " fosslinux
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: fosslinux @ 2020-07-17  7:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 558 bytes --]

There is a new pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages rpi-lxd-vlan-fix
https://github.com/void-linux/void-packages/pull/23610

rpi-kernel: add support for LXD 4.2+.
This is not enabled on any of the defconfigs by default, but is needed for LXD since 4.2.

@pbui Does this look sane to you?

Compiled for all archs and tested on rpi4 (aarch64) and rpi3 (aarch64, armv7l)

[ci skip]


A patch file from https://github.com/void-linux/void-packages/pull/23610.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-lxd-vlan-fix-23610.patch --]
[-- Type: text/x-diff, Size: 936 bytes --]

From 1793dfb9c826881ee2989ea4d5c2653c7a2f4404 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Fri, 17 Jul 2020 17:37:11 +1000
Subject: [PATCH] rpi-kernel: add support for LXD 4.2+.

---
 srcpkgs/rpi-kernel/template | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/rpi-kernel/template b/srcpkgs/rpi-kernel/template
index 2f4d9defbab..5e3de2045a4 100644
--- a/srcpkgs/rpi-kernel/template
+++ b/srcpkgs/rpi-kernel/template
@@ -10,7 +10,7 @@ _gitshort="${_githash:0:7}"
 
 pkgname=rpi-kernel
 version=4.19.127
-revision=1
+revision=2
 wrksrc="linux-${_githash}"
 maintainer="Peter Bui <pbui@github.bx612.space>"
 homepage="http://www.kernel.org"
@@ -92,6 +92,9 @@ do_configure() {
 
 	# HID Controllers
 	echo "CONFIG_HID_STEAM=y" >> "$defconfig"
+
+	# LXD 4.2+ support
+	echo "CONFIG_BRIDGE_VLAN_FILTERING=y" >> "$defconfig"
 	
 	make ${makejobs} ${_cross} ARCH=${_arch} ${target}
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] rpi-kernel: add support for LXD 4.2+.
  2020-07-17  7:39 [PR PATCH] rpi-kernel: add support for LXD 4.2+ fosslinux
@ 2020-07-17  7:41 ` fosslinux
  2020-07-17 12:26 ` pbui
  2020-07-17 14:28 ` [PR PATCH] [Merged]: " Piraty
  2 siblings, 0 replies; 4+ messages in thread
From: fosslinux @ 2020-07-17  7:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 563 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages rpi-lxd-vlan-fix
https://github.com/void-linux/void-packages/pull/23610

rpi-kernel: add support for LXD 4.2+.
This is not enabled on any of the defconfigs by default, but is needed for LXD since 4.2.

@pbui Does this look sane to you?

Compiled for all archs and tested on rpi4 (aarch64) and rpi3 (aarch64, armv7l)

[ci skip]


A patch file from https://github.com/void-linux/void-packages/pull/23610.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rpi-lxd-vlan-fix-23610.patch --]
[-- Type: text/x-diff, Size: 946 bytes --]

From 5841f01ce525ccfaffc91f7c286d89bc3aea2443 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Fri, 17 Jul 2020 17:37:11 +1000
Subject: [PATCH] rpi-kernel: add support for LXD 4.2+.

[ci skip]
---
 srcpkgs/rpi-kernel/template | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/rpi-kernel/template b/srcpkgs/rpi-kernel/template
index 2f4d9defbab..5e3de2045a4 100644
--- a/srcpkgs/rpi-kernel/template
+++ b/srcpkgs/rpi-kernel/template
@@ -10,7 +10,7 @@ _gitshort="${_githash:0:7}"
 
 pkgname=rpi-kernel
 version=4.19.127
-revision=1
+revision=2
 wrksrc="linux-${_githash}"
 maintainer="Peter Bui <pbui@github.bx612.space>"
 homepage="http://www.kernel.org"
@@ -92,6 +92,9 @@ do_configure() {
 
 	# HID Controllers
 	echo "CONFIG_HID_STEAM=y" >> "$defconfig"
+
+	# LXD 4.2+ support
+	echo "CONFIG_BRIDGE_VLAN_FILTERING=y" >> "$defconfig"
 	
 	make ${makejobs} ${_cross} ARCH=${_arch} ${target}
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: rpi-kernel: add support for LXD 4.2+.
  2020-07-17  7:39 [PR PATCH] rpi-kernel: add support for LXD 4.2+ fosslinux
  2020-07-17  7:41 ` [PR PATCH] [Updated] " fosslinux
@ 2020-07-17 12:26 ` pbui
  2020-07-17 14:28 ` [PR PATCH] [Merged]: " Piraty
  2 siblings, 0 replies; 4+ messages in thread
From: pbui @ 2020-07-17 12:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 235 bytes --]

New comment by pbui on void-packages repository

https://github.com/void-linux/void-packages/pull/23610#issuecomment-660078965

Comment:
LGTM.  I don't have a problem with it especially since it is enabled in our normal linux kernels.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: rpi-kernel: add support for LXD 4.2+.
  2020-07-17  7:39 [PR PATCH] rpi-kernel: add support for LXD 4.2+ fosslinux
  2020-07-17  7:41 ` [PR PATCH] [Updated] " fosslinux
  2020-07-17 12:26 ` pbui
@ 2020-07-17 14:28 ` Piraty
  2 siblings, 0 replies; 4+ messages in thread
From: Piraty @ 2020-07-17 14:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 394 bytes --]

There's a merged pull request on the void-packages repository

rpi-kernel: add support for LXD 4.2+.
https://github.com/void-linux/void-packages/pull/23610

Description:
This is not enabled on any of the defconfigs by default, but is needed for LXD since 4.2.

@pbui Does this look sane to you?

Compiled for all archs and tested on rpi4 (aarch64) and rpi3 (aarch64, armv7l)

[ci skip]


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-07-17 14:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-17  7:39 [PR PATCH] rpi-kernel: add support for LXD 4.2+ fosslinux
2020-07-17  7:41 ` [PR PATCH] [Updated] " fosslinux
2020-07-17 12:26 ` pbui
2020-07-17 14:28 ` [PR PATCH] [Merged]: " Piraty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).