From 8cb83eee5a58b1fad74c34094ce3afb9e430b5a4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:42:50 +0200 Subject: Adding upstream version 2.33.1. Signed-off-by: Daniel Baumann --- Documentation/example.files/filesystems | 7 +++++++ Documentation/example.files/fstab | 15 +++++++++++++++ Documentation/example.files/motd | 10 ++++++++++ Documentation/example.files/securetty | 5 +++++ Documentation/example.files/shells | 4 ++++ Documentation/example.files/udev-raw.rules | 7 +++++++ 6 files changed, 48 insertions(+) create mode 100644 Documentation/example.files/filesystems create mode 100644 Documentation/example.files/fstab create mode 100644 Documentation/example.files/motd create mode 100644 Documentation/example.files/securetty create mode 100644 Documentation/example.files/shells create mode 100644 Documentation/example.files/udev-raw.rules (limited to 'Documentation/example.files') 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..842a6f3 --- /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. -- cgit v1.2.3