diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-04-12 23:20:31 +0000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-04-12 23:20:31 +0000 |
commit | 4ec5f133bb0b800ef8bfa0c8687a8f317b092162 (patch) | |
tree | a3d74f0326478631eee55ba70c0e44d100bcbd60 /package/kexec-tools/patches/0002-Use-separate-LDFLAGS-for-bin-to-hex.patch | |
parent | 077d84f543b36d27d1d8aa5f759d6eed6c6a65b2 (diff) | |
download | mtk-20170518-4ec5f133bb0b800ef8bfa0c8687a8f317b092162.zip mtk-20170518-4ec5f133bb0b800ef8bfa0c8687a8f317b092162.tar.gz mtk-20170518-4ec5f133bb0b800ef8bfa0c8687a8f317b092162.tar.bz2 |
Use new kexec tools
Horms' new kexec-tools repository has a number of updates and fixes for
kexec, and also supports the PS3.
This change updates the kexec repo, and adds a few build-system patches
to make it work with OpenWRT.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
SVN-Revision: 10803
Diffstat (limited to 'package/kexec-tools/patches/0002-Use-separate-LDFLAGS-for-bin-to-hex.patch')
-rw-r--r-- | package/kexec-tools/patches/0002-Use-separate-LDFLAGS-for-bin-to-hex.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/package/kexec-tools/patches/0002-Use-separate-LDFLAGS-for-bin-to-hex.patch b/package/kexec-tools/patches/0002-Use-separate-LDFLAGS-for-bin-to-hex.patch new file mode 100644 index 0000000..f420bab --- /dev/null +++ b/package/kexec-tools/patches/0002-Use-separate-LDFLAGS-for-bin-to-hex.patch @@ -0,0 +1,27 @@ +From 072159b1f4aca88f7d99259fe2bd14a6653ede52 Mon Sep 17 00:00:00 2001 +From: Jeremy Kerr <jk@ozlabs.org> +Date: Wed, 19 Mar 2008 17:20:39 +1100 +Subject: [PATCH] Use separate LDFLAGS for bin-to-hex + +We don't need the general -L and -l flags for the bin-to-hex util. + +Signed-off-by: Jeremy Kerr <jk@ozlabs.org> +--- + util/Makefile | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/util/Makefile b/util/Makefile +index 89732a1..11d82fd 100644 +--- a/util/Makefile ++++ b/util/Makefile +@@ -6,6 +6,7 @@ $(BIN_TO_HEX): $(srcdir)/util/bin-to-hex.c + + $(BIN_TO_HEX): CC=$(BUILD_CC) + $(BIN_TO_HEX): CFLAGS=$(BUILD_CFLAGS) ++$(BIN_TO_HEX): LDFLAGS= + + dist += util/Makefile util/bin-to-hex.c + clean += util/bin-to-hex.o $(BIN_TO_HEX) +-- +1.5.0.rc4.g85b1 + |