After discussions with cristos regarding the previous commit, he

convinced me it was sufficient to define GZIP_CMD only in
distrib/utils/embedded/mkimage and not again in the config files
beagleboard.conf, rpi.conf, and rpi_inst.conf similar to how the
other variables $src, $release, $mnt, ... are only defined there.
This commit is contained in:
ast 2013-09-16 15:23:57 +00:00
parent 0422e3f47d
commit d134b5afd8
3 changed files with 3 additions and 9 deletions

View File

@ -1,10 +1,8 @@
# $NetBSD: beagleboard.conf,v 1.16 2013/09/14 12:51:27 ast Exp $
# $NetBSD: beagleboard.conf,v 1.17 2013/09/16 15:23:57 ast Exp $
# BeagleBoard customization script used by mkimage
#
board=beagleboard
GZIP_CMD=${TOOL_GZIP:-gzip} # ${GZIP} is special to gzip(1)
. ${DIR}/conf/evbarm.conf
bboard_kernelimg=bboard.ub

View File

@ -1,12 +1,10 @@
# $NetBSD: rpi.conf,v 1.22 2013/09/14 12:51:27 ast Exp $
# $NetBSD: rpi.conf,v 1.23 2013/09/16 15:23:57 ast Exp $
# Raspberry Pi customization script used by mkimage
#
board=rpi
kernel=$src/sys/arch/evbarm/compile/RPI/netbsd-RPI.bin
GZIP_CMD=${TOOL_GZIP:-gzip} # ${GZIP} is special to gzip(1)
. ${DIR}/conf/evbarm.conf
firmwaredir=$src/external/broadcom/rpi-firmware/dist

View File

@ -1,12 +1,10 @@
# $NetBSD: rpi_inst.conf,v 1.3 2013/09/14 12:51:27 ast Exp $
# $NetBSD: rpi_inst.conf,v 1.4 2013/09/16 15:23:57 ast Exp $
# Raspberry Pi customization script used by mkimage
#
board=rpi_inst
kernel=$src/sys/arch/evbarm/compile/RPI/netbsd-RPI_INSTALL.bin
GZIP_CMD=${TOOL_GZIP:-gzip} # ${GZIP} is special to gzip(1)
image=$HOME/${board}.img
specialdirs="/kern /proc"