Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b370f5a authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Move id(1) and whoami(1) to toybox.

Test: builds
Change-Id: I32347c94438c394eb31f5af9f51cee11ad0ef247
parent eeb2c4b0
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -104,7 +104,6 @@ var Configuration = map[string]PathConfig{
	"head":      Allowed,
	"hexdump":   Allowed,
	"hostname":  Allowed,
	"id":        Allowed,
	"jar":       Allowed,
	"java":      Allowed,
	"javap":     Allowed,
@@ -154,7 +153,6 @@ var Configuration = map[string]PathConfig{
	"unzip":     Allowed,
	"wc":        Allowed,
	"which":     Allowed,
	"whoami":    Allowed,
	"xargs":     Allowed,
	"xxd":       Allowed,
	"xz":        Allowed,
@@ -176,8 +174,10 @@ var Configuration = map[string]PathConfig{
	"pkg-config": Forbidden,

	// On linux we'll use the toybox version of these instead
	"id":     Toybox,
	"true":   Toybox,
	"uname":  Toybox,
	"whoami": Toybox,
}

func init() {