Skip to content

Commit e5bba65

Browse files
committed
[build] Fix 'make kimage'
Some builds were improper due to not waiting for kernel build to finish before starting application installation.
1 parent 77da702 commit e5bba65

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ image:
2323
images:
2424
$(MAKE) -C image images
2525

26-
kimage: kernel image
26+
kimage:
27+
$(MAKE) -C elks all
28+
$(MAKE) -C image
2729

2830
kernel:
2931
$(MAKE) -C elks all
@@ -92,6 +94,9 @@ defconfig:
9294
$(RM) .config
9395
@yes '' | ${MAKE} config
9496

97+
yesconfig:
98+
@yes '' | ${MAKE} config
99+
95100
include/autoconf.h: .config
96101
@yes '' | config/Configure -D config.in
97102

0 commit comments

Comments
 (0)