mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 00:49:13 -06:00
21 lines
415 B
Text
21 lines
415 B
Text
|
##
|
||
|
## Add linux headers to build DKMS packages even after the kernel
|
||
|
## used to build the live images is gone from kali-rolling.
|
||
|
##
|
||
|
#if ARCHITECTURES i386
|
||
|
linux-headers-686-pae
|
||
|
#endif
|
||
|
#if ARCHITECTURES amd64
|
||
|
linux-headers-amd64
|
||
|
#endif
|
||
|
#if ARCHITECTURES arm64
|
||
|
linux-headers-arm64
|
||
|
#endif
|
||
|
#if ARCHITECTURES armel
|
||
|
linux-headers-marvell
|
||
|
#endif
|
||
|
#if ARCHITECTURES armhf
|
||
|
linux-headers-armmp
|
||
|
linux-headers-armmp-lpae
|
||
|
#endif
|