From c5a34551e153fd5556f3de09ea6e41ea68929fd8 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 19 Feb 2019 11:55:37 -0800 Subject: [PATCH] Switch to toybox egrep(1) and grep(1). Test: treehugger Change-Id: I9053f45d591a8cb53eb36e258ecb97b591d806a1 --- ui/build/paths/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go index a4be2ac47..175aa28e1 100644 --- a/ui/build/paths/config.go +++ b/ui/build/paths/config.go @@ -82,13 +82,11 @@ var Configuration = map[string]PathConfig{ "dd": Allowed, "diff": Allowed, "dlv": Allowed, - "egrep": Allowed, "expr": Allowed, "find": Allowed, "fuser": Allowed, "getopt": Allowed, "git": Allowed, - "grep": Allowed, "gzcat": Allowed, "gzip": Allowed, "hexdump": Allowed, @@ -136,9 +134,11 @@ var Configuration = map[string]PathConfig{ "dirname": LinuxOnlyPrebuilt, "du": LinuxOnlyPrebuilt, "echo": LinuxOnlyPrebuilt, + "egrep": LinuxOnlyPrebuilt, "env": LinuxOnlyPrebuilt, - "head": LinuxOnlyPrebuilt, "getconf": LinuxOnlyPrebuilt, + "grep": LinuxOnlyPrebuilt, + "head": LinuxOnlyPrebuilt, "hostname": LinuxOnlyPrebuilt, "id": LinuxOnlyPrebuilt, "ln": LinuxOnlyPrebuilt,