├── Kbuild.addon ├── Kconfig.addon ├── LICENSE ├── README.md ├── commit-message.txt ├── fetch-and-patch.sh ├── patch.sh ├── screenshot.png └── superuser.c /Kbuild.addon: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ASSISTED_SUPERUSER) += superuser.o 2 | -------------------------------------------------------------------------------- /Kconfig.addon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/Kconfig.addon -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/README.md -------------------------------------------------------------------------------- /commit-message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/commit-message.txt -------------------------------------------------------------------------------- /fetch-and-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/fetch-and-patch.sh -------------------------------------------------------------------------------- /patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/patch.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/screenshot.png -------------------------------------------------------------------------------- /superuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MlgmXyysd/kernel-assisted-superuser/HEAD/superuser.c --------------------------------------------------------------------------------