You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
611 B
25 lines
611 B
3 years ago
|
# sample ~/.mkimage/profiles.mk
|
||
|
# NB: REPORT doesn't work here, it's somewhat special
|
||
|
|
||
|
# where to look for apt.conf; system one used by default
|
||
|
ifneq (,$(BRANCH))
|
||
|
APTCONF = ~/apt/apt.conf.$(BRANCH).$(ARCH)
|
||
|
else
|
||
|
APTCONF = ~/apt/apt.conf.sisyphus.$(ARCH)
|
||
|
endif
|
||
|
|
||
|
# path to save out image
|
||
|
IMAGEDIR = ~/out/$(BRANCH)/$(shell date +%Y%m%d)
|
||
|
|
||
|
# turns on GLOBAL_VERBOSE and prettier output
|
||
|
#DEBUG = 1
|
||
|
|
||
|
# spares tmpfs, quite recommended unless you need raw workdir chroots
|
||
|
#CLEAN = 1
|
||
|
|
||
|
# run with lower CPU and I/O priorities
|
||
|
#NICE = 1
|
||
|
|
||
|
# try and draw attention when done (depends on readline/terminal settings)
|
||
|
#BELL = 1
|