View detach.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <err.h> | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <pty.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
int main(int argc, char **argv) { | |
char buffer[BUFSIZ]; |
View fmt.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/fmt.c b/src/fmt.c | |
index d1e3bc3..6c5f982 100644 | |
--- a/src/fmt.c | |
+++ b/src/fmt.c | |
@@ -40,7 +40,7 @@ | |
"best". Adjust to taste, subject to the caveats given. */ | |
/* Default longest permitted line length (max_width). */ | |
-#define WIDTH 75 | |
+#define WIDTH 76 |
View proto-qmi.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | |
index 8cbe9e97e7..4aadd57813 100755 | |
--- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | |
+++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | |
@@ -19,6 +19,7 @@ proto_qmi_init_config() { | |
proto_config_add_string modes | |
proto_config_add_string pdptype | |
proto_config_add_int profile | |
+ proto_config_add_boolean dhcp | |
proto_config_add_boolean dhcpv6 |
View uqmi.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dev.c b/dev.c | |
index bd10207..d14255a 100644 | |
--- a/dev.c | |
+++ b/dev.c | |
@@ -24,6 +24,7 @@ | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
+#include <sys/file.h> | |
#include "uqmi.h" |
View openwrt.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package/base-files/Makefile b/package/base-files/Makefile | |
index cf5166772d..f325630bd7 100644 | |
--- a/package/base-files/Makefile | |
+++ b/package/base-files/Makefile | |
@@ -147,13 +147,9 @@ define Package/base-files/install | |
) | |
$(VERSION_SED_SCRIPT) \ | |
- $(1)/etc/banner \ | |
- $(1)/etc/openwrt_version \ |
View khadas-edge.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile | |
index e985884d9a..c7bb110389 100644 | |
--- a/arch/arm/dts/Makefile | |
+++ b/arch/arm/dts/Makefile | |
@@ -108,6 +108,7 @@ dtb-$(CONFIG_ROCKCHIP_RK3399) += \ | |
rk3399-ficus.dtb \ | |
rk3399-firefly.dtb \ | |
rk3399-gru-bob.dtb \ | |
+ rk3399-khadas-edge.dtb \ | |
rk3399-nanopc-t4.dtb \ |
View siginfo.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 0bcbef9314d6679d1fbbb0114683d06de0196623 Mon Sep 17 00:00:00 2001 | |
Message-Id: <0bcbef9314d6679d1fbbb0114683d06de0196623.1341578007.git.chris@arachsys.com> | |
From: Chris Webb <chris@arachsys.com> | |
Date: Fri, 6 Jul 2012 13:18:58 +0100 | |
Subject: [PATCH] Replace struct siginfo with siginfo_t | |
Glibc 2.16.0 removes the undocumented definition of 'struct siginfo' from | |
<bits/siginfo.h>. This struct is also available as the POSIX-defined | |
siginfo_t, so replace all uses of struct siginfo with siginfo_t. |
View README
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Notes on making a signed software release | |
========================================= | |
Create a signed tag called NAME-VERSION with | |
git tag --message=NAME-VERSION --sign NAME-VERSION | |
Generate a release tar.gz and signature with | |
git archive --output=NAME-VERSION.tar.gz --prefix=NAME-VERSION/ NAME-VERSION |
NewerOlder