├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── bootstrap.c /.gitignore: -------------------------------------------------------------------------------- 1 | scratch-output.c 2 | *.ko 3 | *.o 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchnative/scratch-linux-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchnative/scratch-linux-modules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchnative/scratch-linux-modules/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchnative/scratch-linux-modules/HEAD/bootstrap.c --------------------------------------------------------------------------------