I'm using the "canonical way" to build ubuntu kernel with ./debian/rules binary-generic
. On my machine the build takes more than half an hour. Is there a way to quickly build only vmlinuz? In fact I need only the kernel binary image. After installing the new kernel from a deb package I update the kernel by replacing vmlinuz.
Asked
Active
Viewed 755 times
0

Al Izi
- 1
make
, right?A different question then. How to use the configuration produced by
– Al Izi Sep 14 '17 at 16:35debian/rules updateconfigs
when building with make?cp /boot/config-4.4.0-93-generic .config
but disable debug. – Doug Smythies Sep 14 '17 at 16:52make
also updates.config
file so there is no way to modfy it before build. Is there a way to leave.config
untouched? – Al Izi Sep 17 '17 at 02:53