aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-12-01 09:59:53 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-12-01 09:59:53 +0000
commit892e13e5c9f228ad2d2595276a2804bdf6bdb772 (patch)
tree06a344df2e534c08c5652423d26acb7cbadea364 /target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch
parentff2bdbe3b4429e7cfe82a5f1230ba75d394ebb31 (diff)
downloadupstream-892e13e5c9f228ad2d2595276a2804bdf6bdb772.tar.gz
upstream-892e13e5c9f228ad2d2595276a2804bdf6bdb772.tar.bz2
upstream-892e13e5c9f228ad2d2595276a2804bdf6bdb772.zip
kernel: update 3.10 to 3.10.21
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38972 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch')
-rw-r--r--target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch22
1 files changed, 11 insertions, 11 deletions
diff --git a/target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch b/target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch
index ac9aa54257..42f3fa226e 100644
--- a/target/linux/generic/patches-3.10/203-kallsyms_uncompressed.patch
+++ b/target/linux/generic/patches-3.10/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"