Maximilian Brune has uploaded this change for review.

View Change

util/list_yet_unsupported_chips.h: Fix path

Change-Id: Iecb6cf3d1f214102a243a3ffa8d0c9301263af0a
Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
---
M util/list_yet_unsupported_chips.sh
1 file changed, 3 insertions(+), 3 deletions(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/55/81855/1
diff --git a/util/list_yet_unsupported_chips.sh b/util/list_yet_unsupported_chips.sh
index 3a4d1b8..bba5813 100755
--- a/util/list_yet_unsupported_chips.sh
+++ b/util/list_yet_unsupported_chips.sh
@@ -2,7 +2,7 @@

scriptname=$(readlink -f "$0") 2>/dev/null
path=$(dirname "$scriptname")/.. 2>/dev/null
-if [ ! -e "$path/flashchips.c" -o ! -e "$path/flashchips.h" ]; then
+if [ ! -e "$path/flashchips.c" -o ! -e "$path/include/flashchips.h" ]; then
echo "Warning: could not calculate flashchips.[ch]'s directory. Trying current..."
path="."
if [ ! -e "$path/flashchips.c" -o ! -e "$path/flashchips.h" ]; then
@@ -11,11 +11,11 @@
fi
fi

-chips=$(sed -re '/#define [A-Z]/ !d' -e '/_ID\s/d' -e 's/\s*#define\s+([[:alnum:]_]+)\s+.*/\1/' "$path/flashchips.h")
+chips=$(sed -re '/#define [A-Z]/ !d' -e '/_ID\s/d' -e 's/\s*#define\s+([[:alnum:]_]+)\s+.*/\1/' "$path/include/flashchips.h")
for c in $chips ; do
if ! grep "$c" "$path/flashchips.c" >/dev/null ; then
if [ -n "$1" ]; then
- grep -o "$c.*" "$path/flashchips.h"
+ grep -o "$c.*" "$path/include/flashchips.h"
else
echo "$c"
fi

To view, visit change 81855. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: Iecb6cf3d1f214102a243a3ffa8d0c9301263af0a
Gerrit-Change-Number: 81855
Gerrit-PatchSet: 1
Gerrit-Owner: Maximilian Brune <maximilian.brune@9elements.com>
Gerrit-MessageType: newchange