blob: 32c00aa47acaa9f30a966ab53a14b15010461c6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.9 2021/03/07 03:55:47 dbj Exp $
#
# HP Proliant iLO serial console is on com1
CDBOOTOPTIONS= -o console=com0
.include "${.CURDIR}/../Makefile.cdrom"
CDBASE= boot-com # gives ${CDBASE}.iso
CDBUILDEXTRA+= boot.cfg # Add boot.cfg file
CLEANFILES+= boot.cfg
prepare_md_post:
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" < ${.CURDIR}/../bootcd/boot.cfg.in > boot.cfg
.include "${.CURDIR}/../../../common/Makefile.bootcd"
|