From 0b0a9425a0518414b42488f6a14cc09b26dd2a84 Mon Sep 17 00:00:00 2001 From: jklincn Date: Wed, 24 Apr 2024 16:20:56 +0800 Subject: [PATCH] Create README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3f878c6 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Scull-Linux5.4 + +Scull (Simple Character Utility for Loading Localities) is a char driver that acts on a memory area as though it were a device. It's an example driver in LDD3 (Linux Device Drivers, Third Edition). + +This project has implemented Scull on Linux 5.4 (Ubuntu 20.04) and written some functional testing programs (see [test](https://github.com/jklincn/scull-linux5.4/tree/master/test)). + +## Quick Start + +``` +git clone https://github.com/jklincn/scull-linux5.4.git +cd scull-linux5.4 +make install +``` + +It will compile the scull module and insert it into the kernel, and then automatically run the test program. + +For details see [Makefile](Makefile). +