If the name of the config file variable is not generic, devs
can set it in the env for convenience. make it so!
-ifeq ($(CONFIG),)
-$(error CONFIG missing)
+ifeq ($(RUMPRUN_MKCONF),)
+$(error RUMPRUN_MKCONF missing)
endif
-include ${CONFIG}
+include ${RUMPRUN_MKCONF}
ifeq (${BUILDRUMP_TOOLFLAGS},)
-$(error invalid config file ${CONFIG})
+$(error invalid config file ${RUMPRUN_MKCONF})
endif
include ${BUILDRUMP_TOOLFLAGS}
builduserspace ()
{
- ${MAKE} -C app-tools CONFIG=$(pwd)/${PLATFORMDIR}/config.mk
+ ${MAKE} -C app-tools RUMPRUN_MKCONF=$(pwd)/${PLATFORMDIR}/config.mk
usermtree ${STAGING}