Is it possible to update openvpn packages to 2.6.17?
root@Defcon:~# openvpn --version
OpenVPN 2.6.14 aarch64-openwrt-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [MH/PKTINFO] [AEAD] [DCO]
library versions: OpenSSL 3.0.18 30 Sep 2025, LZO 2.10
DCO version: N/A
Originally developed by James Yonan
Copyright (C) 2002-2024 OpenVPN Inc sales@openvpn.net
Thanks Octopus
brada4
December 4, 2025, 8:39pm
2
Hi, why dont you make a pull request? At least make a GH issue describing wanted changes from https://github.com/OpenVPN/openvpn/blob/release/2.6/ChangeLog
I can try but I don't know how, never done that. What is "GH" ?
1 Like
Of course....thanks
What I meant, update in openwrt software.
brada4
December 5, 2025, 9:47am
6
Try your hand at a pull request, superfluously looking at the change log none of changes is a major rewrite to break something.
Is there a Wiki or documentation on how to do a 'PR' on 'GH'?
It might be helpful to users.
frollic
December 5, 2025, 10:38am
8
Since we're doing abbreviations now, RTFM
1 Like
hnyman
December 5, 2025, 10:48am
9
In practice it means, that you first author and test the needed source code changes, and then create a pull request for the admins, so that your code can be merged into the OpenWrt repository.
(It is not a request / wish for a feature by you, but your request to get your code adopted into repo)
1 Like
Wow, that page probably needs a subtitle and updating. I've always failed at point 1 in 'Deciding where to send the patch'. I've seen others too.
The other link says make a fork, the next steps in instructions assume the fork is done.
Thanks, I'll (re) review.
1 Like
egc
December 5, 2025, 11:27am
11
What I do (not saying this is the best way):
First You have to make an account at github
Fork OpenWRT/Packages:
Untick: Copy the Mater branch only
Now on your own workstation install git and Clone your own forked repository
Alter the code, make a commit, be sure to follow the instructions about title and signoff as outlined in the Submitting patches wiki
Now the commit is in your own repository on github and from there you can make a Pull request
Oh and PR's are only accepted for the Master/Main branch but can be backported (cherry picked)
3 Likes
octopus
December 6, 2025, 9:25am
12
Thank you all for your comments.
I have never use Github and done pull request.
It's a big learning curve but the winter is long.
@egc @frollic @hnyman @brada4 @lleachii
1 Like
brada4
December 6, 2025, 9:31am
13
Time is on your side, maybe a maintainer outruns you.
octopus
December 6, 2025, 8:47pm
14
Who is maintainer to openvpn ?
brada4
December 6, 2025, 8:50pm
15
Users in need submitting patches....
#
# Copyright (C) 2010-2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=openvpn
PKG_VERSION:=2.6.14
PKG_RELEASE:=3
PKG_SOURCE_URL:=\
https://build.openvpn.net/downloads/releases/ \
https://swupdate.openvpn.net/community/releases/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_HASH:=9eb6a6618352f9e7b771a9d38ae1631b5edfeed6d40233e243e602ddf2195e7a
This file has been truncated. show original