Add du, paste, xxd to allowed PATH tools
du is used by build/make/tools/releasetools/build_image.py paste is used by system/core/rootdir/update_and_install_ld_config.mk xxd is used by device/generic/goldfish/tools/mk_qemu_image.sh Test: none Change-Id: I707668578d1babe1b149c2c3f989e5f8be37d897
This commit is contained in:
parent
d96ca35779
commit
14eae19b1c
|
@ -71,6 +71,7 @@ var Configuration = map[string]PathConfig{
|
||||||
"dd": Allowed,
|
"dd": Allowed,
|
||||||
"diff": Allowed,
|
"diff": Allowed,
|
||||||
"dirname": Allowed,
|
"dirname": Allowed,
|
||||||
|
"du": Allowed,
|
||||||
"echo": Allowed,
|
"echo": Allowed,
|
||||||
"egrep": Allowed,
|
"egrep": Allowed,
|
||||||
"env": Allowed,
|
"env": Allowed,
|
||||||
|
@ -97,6 +98,7 @@ var Configuration = map[string]PathConfig{
|
||||||
"mktemp": Allowed,
|
"mktemp": Allowed,
|
||||||
"mv": Allowed,
|
"mv": Allowed,
|
||||||
"openssl": Allowed,
|
"openssl": Allowed,
|
||||||
|
"paste": Allowed,
|
||||||
"patch": Allowed,
|
"patch": Allowed,
|
||||||
"perl": Allowed,
|
"perl": Allowed,
|
||||||
"pgrep": Allowed,
|
"pgrep": Allowed,
|
||||||
|
@ -135,6 +137,7 @@ var Configuration = map[string]PathConfig{
|
||||||
"whoami": Allowed,
|
"whoami": Allowed,
|
||||||
"xargs": Allowed,
|
"xargs": Allowed,
|
||||||
"xmllint": Allowed,
|
"xmllint": Allowed,
|
||||||
|
"xxd": Allowed,
|
||||||
"xz": Allowed,
|
"xz": Allowed,
|
||||||
"zip": Allowed,
|
"zip": Allowed,
|
||||||
"zipinfo": Allowed,
|
"zipinfo": Allowed,
|
||||||
|
|
Loading…
Reference in New Issue