diff options
author | Chong Cai <chongc@google.com> | 2021-08-04 16:41:27 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-04 16:44:11 -0700 |
commit | cbb99336cee7d37f4050875a95946ca88b7ac690 (patch) | |
tree | 640779186c9c89f0fc47f0e6b442ca150b1d06c3 /pkg/sentry/control/BUILD | |
parent | 681e5419042ba6b00d50c82d64c0d556e28de0c7 (diff) |
Add Fs controls
Add Fs controls and implement "cat" command.
PiperOrigin-RevId: 388812540
Diffstat (limited to 'pkg/sentry/control/BUILD')
-rw-r--r-- | pkg/sentry/control/BUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/sentry/control/BUILD b/pkg/sentry/control/BUILD index 9fb8a054d..7ee237c9f 100644 --- a/pkg/sentry/control/BUILD +++ b/pkg/sentry/control/BUILD @@ -6,6 +6,7 @@ go_library( name = "control", srcs = [ "control.go", + "fs.go", "lifecycle.go", "logging.go", "pprof.go", @@ -17,6 +18,7 @@ go_library( ], deps = [ "//pkg/abi/linux", + "//pkg/context", "//pkg/fd", "//pkg/log", "//pkg/sentry/fdimport", @@ -36,6 +38,7 @@ go_library( "//pkg/sync", "//pkg/tcpip/link/sniffer", "//pkg/urpc", + "//pkg/usermem", ], ) |