Home | History | Annotate | Line # | Download | only in bootimage
Makefile.liveimage revision 1.1
      1  1.1  tsutsui #	$NetBSD: Makefile.liveimage,v 1.1 2012/01/22 03:53:30 tsutsui Exp $
      2  1.1  tsutsui #
      3  1.1  tsutsui # Common Makefile to create a bootable FS image for USB flash or emulators
      4  1.1  tsutsui #
      5  1.1  tsutsui 
      6  1.1  tsutsui #
      7  1.1  tsutsui # Required variables:
      8  1.1  tsutsui #	LIVEIMGBASE
      9  1.1  tsutsui #		Basename of the liveimage
     10  1.1  tsutsui #
     11  1.1  tsutsui # See Makefile.bootimage for other variables.
     12  1.1  tsutsui #
     13  1.1  tsutsui 
     14  1.1  tsutsui .if empty(LIVEIMGBASE)
     15  1.1  tsutsui .BEGIN:
     16  1.1  tsutsui 	@echo "Error: LIVEIMGBASE is not set"
     17  1.1  tsutsui 	@false
     18  1.1  tsutsui .endif
     19  1.1  tsutsui .if empty(RELEASEDIR)
     20  1.1  tsutsui .BEGIN:
     21  1.1  tsutsui 	@echo "Error: RELEASEDIR is not set"
     22  1.1  tsutsui 	@false
     23  1.1  tsutsui .endif
     24  1.1  tsutsui 
     25  1.1  tsutsui IMGBASE=	${LIVEIMGBASE}
     26  1.1  tsutsui 
     27  1.1  tsutsui .include "${NETBSDSRCDIR}/distrib/common/bootimage/Makefile.bootimage"
     28  1.1  tsutsui 
     29  1.1  tsutsui # LIVEIMG_RELEASEDIR specifies where to install ${LIVEIMGBASE}.img.gz.
     30  1.1  tsutsui # This should be passed from etc/Makefile or etc/etc.${MACHINE}/Makefile.inc
     31  1.1  tsutsui # but also set default here for manual builds.
     32  1.1  tsutsui LIVEIMG_RELEASEDIR?=	${RELEASEMACHINEDIR}/installation/liveimage
     33  1.1  tsutsui 
     34  1.1  tsutsui # should be defined elsewhere? 
     35  1.1  tsutsui MKDIR?=		mkdir -p
     36  1.1  tsutsui 
     37  1.1  tsutsui live_image: ${IMGBASE}.img.gz
     38  1.1  tsutsui 	${MKDIR} ${LIVEIMG_RELEASEDIR}
     39  1.1  tsutsui 	${RELEASE_INSTALL} ${IMGBASE}.img.gz ${LIVEIMG_RELEASEDIR}
     40  1.1  tsutsui 	# note ${MAKESUM} will be calculated in src/etc/Makefile
     41  1.1  tsutsui 
     42  1.1  tsutsui release:
     43  1.1  tsutsui 
     44