diff options
Diffstat (limited to 'rust/snapshot_utils.go')
-rw-r--r-- | rust/snapshot_utils.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rust/snapshot_utils.go b/rust/snapshot_utils.go index 943c79098..1bb3f735d 100644 --- a/rust/snapshot_utils.go +++ b/rust/snapshot_utils.go @@ -28,6 +28,11 @@ func (mod *Module) ExcludeFromRecoverySnapshot() bool { return false } +func (mod *Module) ExcludeFromRamdiskSnapshot() bool { + // TODO Rust does not yet support snapshotting + return false +} + func (mod *Module) IsSnapshotLibrary() bool { // TODO Rust does not yet support snapshotting return false @@ -43,6 +48,11 @@ func (mod *Module) SnapshotSharedLibs() []string { return []string{} } +func (mod *Module) SnapshotStaticLibs() []string { + // TODO Rust does not yet support snapshotting + return []string{} +} + func (mod *Module) Symlinks() []string { // TODO update this to return the list of symlinks when Rust supports defining symlinks return nil |