aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2013-11-05 17:46:18 +0000
committerImre Kaloz <kaloz@openwrt.org>2013-11-05 17:46:18 +0000
commit8e411365b68a0bf7128c4668a80f41f54192c7f0 (patch)
treec39df86e3b03ec984469d42d51fb180ebfc3f312 /target/linux/generic
parent5a7a9e7b0bda8834673d8b8d6afe20ebd0ce2ab8 (diff)
downloadupstream-8e411365b68a0bf7128c4668a80f41f54192c7f0.tar.gz
upstream-8e411365b68a0bf7128c4668a80f41f54192c7f0.tar.bz2
upstream-8e411365b68a0bf7128c4668a80f41f54192c7f0.zip
[generic/3.12]: update for 3.12 final
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38657 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic')
-rw-r--r--target/linux/generic/patches-3.12/203-kallsyms_uncompressed.patch22
1 files changed, 11 insertions, 11 deletions
diff --git a/target/linux/generic/patches-3.12/203-kallsyms_uncompressed.patch b/target/linux/generic/patches-3.12/203-kallsyms_uncompressed.patch
index fc8731f218..ea6b31062c 100644
--- a/target/linux/generic/patches-3.12/203-kallsyms_uncompressed.patch
+++ b/target/linux/generic/patches-3.12/203-kallsyms_uncompressed.patch
@@ -6,9 +6,9 @@
static int all_symbols = 0;
+static int uncompressed = 0;
static char symbol_prefix_char = '\0';
+ static unsigned long long kernel_start_addr = 0;
- int token_profit[0x10000];
-@@ -360,6 +361,9 @@ static void write_src(void)
+@@ -367,6 +368,9 @@ static void write_src(void)
free(markers);
@@ -18,7 +18,7 @@
output_label("kallsyms_token_table");
off = 0;
for (i = 0; i < 256; i++) {
-@@ -418,6 +422,9 @@ static void *find_token(unsigned char *s
+@@ -425,6 +429,9 @@ static void *find_token(unsigned char *s
{
int i;
@@ -28,7 +28,7 @@
for (i = 0; i < len - 1; i++) {
if (str[i] == token[0] && str[i+1] == token[1])
return &str[i];
-@@ -490,6 +497,9 @@ static void optimize_result(void)
+@@ -497,6 +504,9 @@ static void optimize_result(void)
{
int i, best;
@@ -38,10 +38,10 @@
/* using the '\0' symbol last allows compress_symbols to use standard
* fast string functions */
for (i = 255; i >= 0; i--) {
-@@ -646,7 +656,9 @@ int main(int argc, char **argv)
- if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
- p++;
- symbol_prefix_char = *p;
+@@ -656,7 +666,9 @@ int main(int argc, char **argv)
+ } else if (strncmp(argv[i], "--page-offset=", 14) == 0) {
+ const char *p = &argv[i][14];
+ kernel_start_addr = strtoull(p, NULL, 16);
- } else
+ } else if (strcmp(argv[i], "--uncompressed") == 0)
+ uncompressed = 1;
@@ -71,9 +71,9 @@
--- a/scripts/link-vmlinux.sh
+++ b/scripts/link-vmlinux.sh
-@@ -82,6 +82,10 @@ kallsyms()
- kallsymopt="${kallsymopt} --all-symbols"
- fi
+@@ -84,6 +84,10 @@ kallsyms()
+
+ kallsymopt="${kallsymopt} --page-offset=$CONFIG_PAGE_OFFSET"
+ if [ -n "${CONFIG_KALLSYMS_UNCOMPRESSED}" ]; then
+ kallsymopt="${kallsymopt} --uncompressed"