From 63294eec26829681f0402d366222458a3dcb3abd Mon Sep 17 00:00:00 2001 From: Steven Rostedt Date: Thu, 30 Apr 2009 12:22:20 -0400 Subject: [PATCH] --- yaml --- r: 161313 b: refs/heads/master c: 6be51ffc1791b72d11cef9bb0a578fe8c5d64c6a h: refs/heads/master i: 161311: d7c704aee0ad9069e76fd8a462e614195342fdf6 v: v3 --- [refs] | 2 +- trunk/scripts/extract-ikconfig | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 1e0808cb5663..b60a06376422 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: fd3132d5815bf72aeec7d5ad87161b4831f8e48c +refs/heads/master: 6be51ffc1791b72d11cef9bb0a578fe8c5d64c6a diff --git a/trunk/scripts/extract-ikconfig b/trunk/scripts/extract-ikconfig index 42d6bcefb400..de233ff43c1c 100755 --- a/trunk/scripts/extract-ikconfig +++ b/trunk/scripts/extract-ikconfig @@ -59,6 +59,8 @@ dump_config "$image" GZHDR1="0x1f 0x8b 0x08 0x00" GZHDR2="0x1f 0x8b 0x08 0x08" +ELFHDR="0x7f 0x45 0x4c 0x46" + # vmlinux.gz: Check for a compressed images off=`$binoffset "$image" $GZHDR1 2>/dev/null` [ "$?" != "0" ] && off="-1" @@ -73,6 +75,14 @@ elif [ "$off" -ne "-1" ]; then (dd ibs="$off" skip=1 count=0 && dd bs=512k) <"$image" 2>/dev/null | \ zcat >"$TMPFILE" dump_config "$TMPFILE" + +# check if this is simply an ELF file +else + off=`$binoffset "$image" $ELFHDR 2>/dev/null` + [ "$?" != "0" ] && off="-1" + if [ "$off" -eq "0" ]; then + dump_config "$image" + fi fi echo "ERROR: Unable to extract kernel configuration information."