From: Michael Tremer <git@ipfire.org>
To: ipfire-scm@lists.ipfire.org
Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 6aa8145d5f0dfecf1ef1f303a634c9513eb4d3be
Date: Thu, 24 Aug 2023 10:12:24 +0000 [thread overview]
Message-ID: <4RWf5h3M25z2xYW@people01.haj.ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 6565 bytes --]
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".
The branch, next has been updated
via 6aa8145d5f0dfecf1ef1f303a634c9513eb4d3be (commit)
via 121652cf5320851cc4f6cfce1fb9c179319ee6b1 (commit)
via fb7869feb2c9b8665c2f9e77c2d6e2f0ff9ad832 (commit)
via 3dcbb53a21b69ff34fc60d7d75c1ebdbd58bc425 (commit)
via fabc2e112e09ff95f917ae8b1605a4a509fa7434 (commit)
via 81feac13b1f75bb6f3cc733b8a1995cc582a06af (commit)
via b5d85855e5c24d41d65bd9a4218e789974fc2722 (commit)
via acaec6c8388bbf166caf360a5ea39977f938933c (commit)
via a566ba13923a8abad29dcb953a913b005c5c19dc (commit)
via ec35bb25d47e3009d480816251dbd8d96308fba0 (commit)
from 34345ff1ef4cf0124ecd90a7cd4a378cb36a6042 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6aa8145d5f0dfecf1ef1f303a634c9513eb4d3be
Merge: fabc2e112 121652cf5
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Thu Aug 24 10:12:09 2023 +0000
Merge branch 'master' into next
commit fabc2e112e09ff95f917ae8b1605a4a509fa7434
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Mon Aug 21 16:38:25 2023 +0000
core180: Ship man pages index
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 81feac13b1f75bb6f3cc733b8a1995cc582a06af
Author: Jon Murphy <jon.murphy(a)ipfire.org>
Date: Mon Aug 21 09:54:31 2023 -0500
manualpages: correct link to dns help page
- point the dns help link to "configuration/network/dns-server"
Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
-----------------------------------------------------------------------
Summary of changes:
config/cfgroot/manualpages | 2 +-
config/rootfiles/core/180/filelists/files | 1 +
config/rootfiles/oldcore/179/update.sh | 8 +++--
lfs/ppp | 1 +
...heck-to-see-if-we-have-struct-sockaddr_ll.patch | 37 ++++++++++++++++++++++
5 files changed, 46 insertions(+), 3 deletions(-)
create mode 100644 src/patches/ppp/ppp-2.5.0-7-add-configure-check-to-see-if-we-have-struct-sockaddr_ll.patch
Difference in files:
diff --git a/config/cfgroot/manualpages b/config/cfgroot/manualpages
index e99986899..fe5ebc0b8 100644
--- a/config/cfgroot/manualpages
+++ b/config/cfgroot/manualpages
@@ -33,7 +33,7 @@ mdstat.cgi=configuration/status/mdstat
# Network menu
zoneconf.cgi=configuration/network/zoneconf
-dns.cgi=dns
+dns.cgi=configuration/network/dns-server
proxy.cgi=configuration/network/proxy
urlfilter.cgi=configuration/network/proxy/url-filter
updatexlrator.cgi=configuration/network/proxy/update_accelerator
diff --git a/config/rootfiles/core/180/filelists/files b/config/rootfiles/core/180/filelists/files
index 44081afc9..7031204b9 100644
--- a/config/rootfiles/core/180/filelists/files
+++ b/config/rootfiles/core/180/filelists/files
@@ -1 +1,2 @@
srv/web/ipfire/cgi-bin/index.cgi
+var/ipfire/main/manualpages
diff --git a/config/rootfiles/oldcore/179/update.sh b/config/rootfiles/oldcore/179/update.sh
index 636792d82..09db135d5 100644
--- a/config/rootfiles/oldcore/179/update.sh
+++ b/config/rootfiles/oldcore/179/update.sh
@@ -86,8 +86,12 @@ migrate_extrahd
# Start services
/etc/init.d/udev restart
-/etc/init.d/squid restart
-/usr/local/bin/openvpnctrl -s
+if [ -f /var/ipfire/proxy/enable ]; then
+ /etc/init.d/squid restart
+fi
+if grep -q "ENABLED=on" /var/ipfire/ovpn/settings; then
+ /usr/local/bin/openvpnctrl -s
+fi
/usr/local/bin/openvpnctrl -sn2n
# This update needs a reboot...
diff --git a/lfs/ppp b/lfs/ppp
index a6bd633b4..54aa1caf5 100644
--- a/lfs/ppp
+++ b/lfs/ppp
@@ -78,6 +78,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/ppp/ppp-2.5.0-4-increase-max-padi-attempts.patch
cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/ppp/ppp-2.5.0-5-headers_4.9.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ppp/ppp-2.5.0-6-patch-configure-to-handle-cflags-properly.patch
+ cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ppp/ppp-2.5.0-7-add-configure-check-to-see-if-we-have-struct-sockaddr_ll.patch
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--sysconfdir=/etc \
diff --git a/src/patches/ppp/ppp-2.5.0-7-add-configure-check-to-see-if-we-have-struct-sockaddr_ll.patch b/src/patches/ppp/ppp-2.5.0-7-add-configure-check-to-see-if-we-have-struct-sockaddr_ll.patch
new file mode 100644
index 000000000..a7823d424
--- /dev/null
+++ b/src/patches/ppp/ppp-2.5.0-7-add-configure-check-to-see-if-we-have-struct-sockaddr_ll.patch
@@ -0,0 +1,37 @@
+From 9d6d326b2530cffb1414e4c401675117c42d43ce Mon Sep 17 00:00:00 2001
+From: Eivind Naess <eivnaes(a)yahoo.com>
+Date: Sun, 23 Apr 2023 11:30:43 -0700
+Subject: [PATCH] Add configure check to see if we have struct sockaddr_ll
+
+Fixes issue #411.
+
+Signed-off-by: Eivind Naess <eivnaes(a)yahoo.com>
+---
+ configure.ac | 3 ++-
+ pppd/plugins/pppoe/config.h.in | 2 ++
+ 2 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 1180f64ec..38b24af92 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -75,7 +75,8 @@ AM_COND_IF([LINUX], [
+ linux/if_ether.h \
+ linux/if_packet.h \
+ netinet/if_ether.h \
+- netpacket/packet.h])])
++ netpacket/packet.h])
++ AC_CHECK_TYPES([struct sockaddr_ll], [], [], [#include <linux/if_packet.h>])])
+
+ AC_CHECK_SIZEOF(unsigned int)
+ AC_CHECK_SIZEOF(unsigned long)
+diff --git a/pppd/plugins/pppoe/config.h.in b/pppd/plugins/pppoe/config.h.in
+index d447f5e89..d7d61c01c 100644
+--- a/pppd/plugins/pppoe/config.h.in
++++ b/pppd/plugins/pppoe/config.h.in
+@@ -69,3 +69,5 @@
+ /* The size of `unsigned short', as computed by sizeof. */
+ #undef SIZEOF_UNSIGNED_SHORT
+
++/* Define to 1 if the system has the type `struct sockaddr_ll'. */
++#undef HAVE_STRUCT_SOCKADDR_LL
hooks/post-receive
--
IPFire 2.x development tree
reply other threads:[~2023-08-24 10:12 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4RWf5h3M25z2xYW@people01.haj.ipfire.org \
--to=git@ipfire.org \
--cc=ipfire-scm@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox