Skip to content

Commit e598321

Browse files
License fix/Updated README
1 parent d428d98 commit e598321

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This library provides an optimized memory-mapped I/O path inside the Linux kerne
44

55
## Prerequisites
66

7-
FastMap runs on a modified version of Linux 4.14. To build and run this version of FastMap you can clone this kernel with:
7+
The main branch of FastMap runs on a modified version of Linux 4.14. To build and run this version of FastMap you can clone this kernel with:
88
```bash
99
git clone https://github.com/tpapagian/linux-4.14.72-spf.git -b fastmap
1010
```
@@ -13,6 +13,9 @@ The modifications are minimal as they contain only some exported symbols and the
1313

1414
After that, you should configure, build, and install this kernel using specific instructions based on your setup.
1515

16+
The no kernel modifications branch consists of a patchset so that FastMap can run on any Linux 4.14 kernel without any modifications being necessary. It should work properly,
17+
however it has not been tested as thoroughly as the main branch.
18+
1619
## Building FastMap
1720

1821
In order to build FastMap simply run ```make``` on the top-level directory. This will build the driver (located in the driver directory) and the associated userspace tools (located in the ioctl directory). After that, it will also install the FastMap module and run ```depmod```.

driver/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,4 +1340,4 @@ module_init(raw_init);
13401340
module_exit(raw_exit);
13411341

13421342
MODULE_AUTHOR("Anastasios Papagiannis <[email protected]>");
1343-
MODULE_LICENSE("LGPL-2.1");
1343+
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)