2011-10-06 12:46:31 +04:00
# stage 4: dive into mkimage
2010-12-03 17:53:02 +03:00
2011-10-06 12:46:31 +04:00
GLOBAL_BUILDDIR ?= $( shell pwd )
2011-11-05 13:03:48 +04:00
CURRENT_LINK := mkimage-profiles
OUT_LINK := out
2011-06-12 19:06:36 +04:00
2011-10-06 12:46:31 +04:00
i n c l u d e d i s t c f g . m k
2010-08-28 20:28:42 +04:00
i n c l u d e f u n c t i o n s . m k
2010-09-27 23:02:57 +04:00
i n c l u d e $( MKIMAGE_PREFIX ) / c o n f i g . m k
2010-08-28 20:28:42 +04:00
2011-10-06 12:46:31 +04:00
# reconstruct instead of passing yet another variable
2011-11-05 13:03:48 +04:00
IMAGE_LINK := $( IMAGE_NAME) .$( IMAGE_TYPE)
2011-10-06 12:46:31 +04:00
IMAGE_OUTFILE := $( IMAGE_NAME) -$( DATE) -$( ARCH) .$( IMAGE_TYPE)
MKI_PACK_RESULTS = $( IMAGE_PACKTYPE) :$( IMAGE_OUTFILE)
2010-08-28 20:28:42 +04:00
2011-10-06 12:46:31 +04:00
# these get opied over as is
2010-09-09 13:50:29 +04:00
COPY_TREE = ./files
2010-08-28 20:28:42 +04:00
2011-05-11 23:40:47 +04:00
# outdir shouldn't be wiped clean before use
2011-06-14 18:25:55 +04:00
CLEANUP_OUTDIR ?=
2011-05-11 23:40:47 +04:00
2011-11-04 02:14:18 +04:00
GLOBAL_HSH_APT_CONFIG := $( wildcard $( APTCONF) )
2010-09-27 23:02:57 +04:00
2011-10-06 12:46:31 +04:00
# the lib/build-*.mk comes from features.in/build-*/lib
i n c l u d e l i b / * . m k
2010-09-08 16:47:06 +04:00
i n c l u d e $( MKIMAGE_PREFIX ) / t a r g e t s . m k
2010-08-28 20:28:42 +04:00
2011-10-06 12:46:31 +04:00
# specified only for the final image (target-specific)
pack-image : OUTDIR = $( IMAGEDIR )
pack-image : $( IMAGEDIR )
2011-07-15 01:00:46 +04:00
2011-05-11 23:40:47 +04:00
$(IMAGEDIR) :
2011-09-03 13:34:53 +04:00
@mkdir -p " $( IMAGEDIR) "
2011-05-11 23:40:47 +04:00
2011-10-06 12:46:31 +04:00
postprocess :
@OUTPATH= " $( IMAGEDIR) / $( IMAGE_OUTFILE) " ; \
2011-11-04 22:44:25 +04:00
echo " ** image: $$ OUTPATH " >& 2 && \
2011-11-05 13:03:48 +04:00
ln -sf " $( IMAGE_OUTFILE) " " $( IMAGEDIR) / $( IMAGE_LINK) " && \
ln -sf " $$ {IMAGEDIR#`pwd`/} " " $( OUT_LINK) " ; \
ln -sf " $( IMAGE_LINK) " $( OUT_LINK) /" $( CURRENT_LINK) . $( IMAGE_TYPE) " ; \
2011-10-06 12:46:31 +04:00
if [ -n " $( GLOBAL_DEBUG) " ] ; then \
cp -a build.log " $$ OUTPATH.log " ; \
cp -a distcfg.mk " $$ OUTPATH.cfg " ; \
fi
2010-09-27 23:02:57 +04:00
debug :
2011-06-14 18:25:55 +04:00
@echo " TOPDIR= $( TOPDIR) "
@echo " ARCH= $( ARCH) "
@echo " GLOBAL_HSH_APT_CONFIG= $( GLOBAL_HSH_APT_CONFIG) "