Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/routing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2021-08-20 13:02:17 +0300
committerSven Eckelmann <sven@narfation.org>2022-02-19 11:29:33 +0300
commit0beeb0794c6dfc05ccbb5c4b3e71d6de4f5014a0 (patch)
treef04df46e85c1de66a81a4f1e527c920434756685 /batmand
parent1b00a068e57b98b57efa650cb86e034ef2644fe2 (diff)
batmand: Refresh patches with quilt
The test builds are now requiring quilt refreshed patches instead of git patches. Otherwise the build check will not even try to build something. Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'batmand')
-rw-r--r--batmand/patches/0001-Allow-one-to-disable-forking-to-background-in-debug_.patch14
1 files changed, 6 insertions, 8 deletions
diff --git a/batmand/patches/0001-Allow-one-to-disable-forking-to-background-in-debug_.patch b/batmand/patches/0001-Allow-one-to-disable-forking-to-background-in-debug_.patch
index 90527e6..7b01751 100644
--- a/batmand/patches/0001-Allow-one-to-disable-forking-to-background-in-debug_.patch
+++ b/batmand/patches/0001-Allow-one-to-disable-forking-to-background-in-debug_.patch
@@ -6,8 +6,6 @@ Subject: Allow one to disable forking to background in debug_mode 0
posix/init.c | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
-diff --git a/posix/init.c b/posix/init.c
-index afd409f..901c65a 100644
--- a/posix/init.c
+++ b/posix/init.c
@@ -44,6 +44,7 @@
@@ -18,7 +16,7 @@ index afd409f..901c65a 100644
-@@ -159,6 +160,7 @@ void apply_init_args( int argc, char *argv[] ) {
+@@ -159,6 +160,7 @@ void apply_init_args( int argc, char *ar
{"purge-timeout", required_argument, 0, 'q'},
{"disable-aggregation", no_argument, 0, 'x'},
{"disable-client-nat", no_argument, 0, 'z'},
@@ -26,16 +24,16 @@ index afd409f..901c65a 100644
{0, 0, 0, 0}
};
-@@ -166,7 +168,7 @@ void apply_init_args( int argc, char *argv[] ) {
- stop = 0;
- prog_name = argv[0];
+@@ -169,7 +171,7 @@ void apply_init_args( int argc, char *ar
+ if ( strstr( SOURCE_VERSION, "-" ) != NULL )
+ printf( "WARNING: You are using the unstable batman branch. If you are interested in *using* batman get the latest stable release !\n" );
- while ( ( optchar = getopt_long( argc, argv, "a:A:bcd:hHio:g:p:r:s:vV", long_options, &option_index ) ) != -1 ) {
+ while ( ( optchar = getopt_long( argc, argv, "a:A:bcd:hHio:g:p:r:s:vVD", long_options, &option_index ) ) != -1 ) {
switch ( optchar ) {
-@@ -378,6 +380,11 @@ void apply_init_args( int argc, char *argv[] ) {
+@@ -381,6 +383,11 @@ void apply_init_args( int argc, char *ar
found_args++;
break;
@@ -47,7 +45,7 @@ index afd409f..901c65a 100644
case 'h':
default:
usage();
-@@ -536,12 +543,14 @@ void apply_init_args( int argc, char *argv[] ) {
+@@ -539,12 +546,14 @@ void apply_init_args( int argc, char *ar
/* daemonize */
if (debug_level == 0) {