# Building the Kernel



# Strip Debug

When Kernel modules are built they often contain debug information. This creates modules with substantially larger sizes. To remove this debug information just set the environment variable when running `make/make install`

```bash
INSTALL_MOD_STRIP=1
```
[(source)](https://www.kernel.org/doc/html/latest/kbuild/makefiles.html#kbuild-variables)