summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/ext/assets/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry/fs/ext/assets/README.md')
-rw-r--r--pkg/sentry/fs/ext/assets/README.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkg/sentry/fs/ext/assets/README.md b/pkg/sentry/fs/ext/assets/README.md
deleted file mode 100644
index b6eac4f40..000000000
--- a/pkg/sentry/fs/ext/assets/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-### Tiny Ext4 Image
-
-The image is of size 64Kb which supports 64 1k blocks and 16 inodes. This is the
-smallest size mkfs.ext4 works with.
-
-This image was generated using the following commands.
-
-```bash
-fallocate -l 64K tiny.ext4
-mkfs.ext4 -j tiny.ext4
-```
-
-You can mount it using:
-
-```bash
-sudo mount -o loop tiny.ext4 $MOUNTPOINT
-```
-
-`file.txt`, `bigfile.txt` and `symlink.txt` were added to this image by just
-mounting it and copying (while preserving links) those files to the mountpoint
-directory using:
-
-```bash
-sudo cp -P {file.txt,symlink.txt,bigfile.txt} $MOUNTPOINT/
-```
-
-The files in this directory mirror the contents and organisation of the files
-stored in the image.