summaryrefslogtreecommitdiffstats
path: root/Documentation/example.files
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/example.files')
-rw-r--r--Documentation/example.files/filesystems7
-rw-r--r--Documentation/example.files/fstab15
-rw-r--r--Documentation/example.files/motd10
-rw-r--r--Documentation/example.files/securetty5
-rw-r--r--Documentation/example.files/shells4
-rw-r--r--Documentation/example.files/udev-raw.rules7
6 files changed, 48 insertions, 0 deletions
diff --git a/Documentation/example.files/filesystems b/Documentation/example.files/filesystems
new file mode 100644
index 0000000..cd56ee7
--- /dev/null
+++ b/Documentation/example.files/filesystems
@@ -0,0 +1,7 @@
+ext4
+ext3
+vfat
+hfs
+hfsplus
+iso9660
+btrfs
diff --git a/Documentation/example.files/fstab b/Documentation/example.files/fstab
new file mode 100644
index 0000000..8cffa64
--- /dev/null
+++ b/Documentation/example.files/fstab
@@ -0,0 +1,15 @@
+# /etc/fstab
+# static file system information
+#
+# This file is not used by the kernel, but rather by mount(8) and umount(8)
+# (and some day fsck(8)). Comment lines have "#" in the first column.
+#
+# For more information see fstab(5) man page.
+#
+# device directory type options freq pass
+UUID=2cda1e08-1f22-490b-9101-c93d511bc9c9 / ext4 defaults 1 1
+UUID=805e7418-fc20-4dcf-830c-729781e58d1a /boot ext4 defaults 1 2
+proc /proc proc defaults 0 0
+sysfs /sys sysfs defaults 0 0
+tmpfs /dev/shm tmpfs defaults 0 0
+devpts /dev/pts devpts gid=5,mode=620 0 0
diff --git a/Documentation/example.files/motd b/Documentation/example.files/motd
new file mode 100644
index 0000000..c78c774
--- /dev/null
+++ b/Documentation/example.files/motd
@@ -0,0 +1,10 @@
+
+ |^^^^^^|
+ | | _____________________
+ | | / \
+ | (o)(o) | |
+ @ _) | BOGUS man!! |
+ | ,___| ,,| |
+ | / ..'' | |
+ /____\ \_____________________/
+
diff --git a/Documentation/example.files/securetty b/Documentation/example.files/securetty
new file mode 100644
index 0000000..d874765
--- /dev/null
+++ b/Documentation/example.files/securetty
@@ -0,0 +1,5 @@
+tty1
+tty2
+tty3
+tty4
+ttyS1
diff --git a/Documentation/example.files/shells b/Documentation/example.files/shells
new file mode 100644
index 0000000..14b99f1
--- /dev/null
+++ b/Documentation/example.files/shells
@@ -0,0 +1,4 @@
+/bin/sh
+/bin/bash
+/bin/csh
+/bin/tcsh
diff --git a/Documentation/example.files/udev-raw.rules b/Documentation/example.files/udev-raw.rules
new file mode 100644
index 0000000..3f0e8cb
--- /dev/null
+++ b/Documentation/example.files/udev-raw.rules
@@ -0,0 +1,7 @@
+# Enter raw device bindings here.
+#
+# An example would be:
+# ACTION=="add", KERNEL=="sda", RUN+="/bin/raw /dev/raw/raw1 %N"
+# to bind /dev/raw/raw1 to /dev/sda, or
+# ACTION=="add", ENV{MAJOR}=="8", ENV{MINOR}=="1", RUN+="/bin/raw /dev/raw/raw2 %M %m"
+# to bind /dev/raw/raw2 to the device with major 8, minor 1.