1
0
mirror of https://github.com/krislamo/kernmod.git synced 2025-09-09 07:49:29 +00:00

A hello world Linux kernel module

This commit is contained in:
2021-11-10 01:14:16 -05:00
commit 00e921ec10
6 changed files with 66 additions and 0 deletions

6
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,6 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/bullseye64"
config.vm.synced_folder ".", "/vagrant"
config.vm.network "private_network", type: "dhcp"
config.vm.provision "shell", path: "build.sh"
end