As mentioned in the Advanced usage documentation, it is possible to use Kmax with Busybox. However, following the instructions, the first call to kextract gives an error:
In fact, the Config.in files that contain the description of the options are generated by Busybox during the build with the gen_build_files rule (with Kbuild files as well). To get rid of this error, have to generate the Config.in files first then call kextract. I would suggest to add the generation Config.in files before the call to kextract, as follows:
As mentioned in the Advanced usage documentation, it is possible to use Kmax with Busybox. However, following the instructions, the first call to kextract gives an error:
In fact, the Config.in files that contain the description of the options are generated by Busybox during the build with the
gen_build_files
rule (with Kbuild files as well). To get rid of this error, have to generate the Config.in files first then call kextract. I would suggest to add the generation Config.in files before the call to kextract, as follows:Now, .kmax/extract has the right content and ./kmax/clause has been generated successfully.