aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-4.4/0181-scripts-knlinfo-Decode-DDTK-atom.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/brcm2708/patches-4.4/0181-scripts-knlinfo-Decode-DDTK-atom.patch')
-rw-r--r--target/linux/brcm2708/patches-4.4/0181-scripts-knlinfo-Decode-DDTK-atom.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/brcm2708/patches-4.4/0181-scripts-knlinfo-Decode-DDTK-atom.patch b/target/linux/brcm2708/patches-4.4/0181-scripts-knlinfo-Decode-DDTK-atom.patch
deleted file mode 100644
index 6da6cf0a48..0000000000
--- a/target/linux/brcm2708/patches-4.4/0181-scripts-knlinfo-Decode-DDTK-atom.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 923637607b454c86216da7e2eedcb23731ebeb24 Mon Sep 17 00:00:00 2001
-From: Phil Elwell <phil@raspberrypi.org>
-Date: Fri, 29 May 2015 11:18:58 +0100
-Subject: [PATCH] scripts/knlinfo: Decode DDTK atom
-
-Show the DDTK atom as being a boolean.
-
-Signed-off-by: Phil Elwell <phil@raspberrypi.org>
----
- scripts/knlinfo | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/scripts/knlinfo
-+++ b/scripts/knlinfo
-@@ -16,6 +16,7 @@ my $trailer_magic = 'RPTL';
-
- my %atom_formats =
- (
-+ 'DDTK' => \&format_bool,
- 'DTOK' => \&format_bool,
- 'KVer' => \&format_string,
- '270X' => \&format_bool,
-@@ -148,7 +149,7 @@ sub format_atom
- sub format_bool
- {
- my ($data) = @_;
-- return unpack('V', $data) ? 'true' : 'false';
-+ return unpack('V', $data) ? 'y' : 'n';
- }
-
- sub format_int