Makefile revision 1.1
11.1Sjmcneill# $NetBSD: Makefile,v 1.1 2021/07/23 21:53:34 jmcneill Exp $ 21.1Sjmcneill 31.1SjmcneillLIVEIMGBASE= NetBSD-${DISTRIBVER}-${MACHINE_ARCH}-live # gives ${IMGBASE}.img 41.1Sjmcneill 51.1SjmcneillEMUIMAGEMB?= 1907 # 2GB USB flash memories aren't 2GiB 61.1SjmcneillLIVEIMAGEMB= ${EMUIMAGEMB} 71.1SjmcneillSWAPMB= 0 # No swap 81.1SjmcneillIMAGEHOSTNAME= netbsd 91.1Sjmcneill 101.1SjmcneillFILESDIR!= cd ${.CURDIR}/../../../utils/embedded/files ; pwd 111.1Sjmcneill 121.1SjmcneillSPEC_EXTRA= ${.CURDIR}/spec.armimage 131.1SjmcneillIMGFILE_EXTRA= \ 141.1Sjmcneill ${FILESDIR}/ec2_init etc/rc.d/ec2_init \ 151.1Sjmcneill ${FILESDIR}/resize_gpt etc/rc.d/resize_gpt \ 161.1Sjmcneill ${.CURDIR}/dhcpcd etc/rc.conf.d/dhcpcd \ 171.1Sjmcneill ${.CURDIR}/ec2_init etc/rc.conf.d/ec2_init \ 181.1Sjmcneill ${.CURDIR}/resize_gpt etc/rc.conf.d/resize_gpt \ 191.1Sjmcneill ${.CURDIR}/resize_root etc/rc.conf.d/resize_root \ 201.1Sjmcneill ${.CURDIR}/sshd etc/rc.conf.d/sshd 211.1Sjmcneill 221.1Sjmcneill.include "${.CURDIR}/../Makefile.liveimage" 23