From fc0a7447161de2ce0ea02fb400f2f78153350f27 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Mon, 3 Jan 2011 19:37:36 +0300 Subject: [PATCH] bios: Use proper grep syntax Signed-off-by: Cyrill Gorcunov --- bios/gen-offsets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bios/gen-offsets.sh b/bios/gen-offsets.sh index d954e11..9a6e322 100644 --- a/bios/gen-offsets.sh +++ b/bios/gen-offsets.sh @@ -8,6 +8,6 @@ echo "" echo "#define BIOS_ENTRY_SIZE(name) (name##_end - name)" echo "" -nm bios-rom.bin.elf | grep ' [:Tt:] ' | awk '{ print "#define BIOS_OFFSET__" $3 " 0x" $1; }' +nm bios-rom.bin.elf | grep ' [Tt] ' | awk '{ print "#define BIOS_OFFSET__" $3 " 0x" $1; }' echo "#endif"