NetBSD/sys/arch/evbarm/conf/mk.viper
pooka d42ccd3441 Add initial support for the PXA255-based Arcom Viper ARM board.
The system can boot into multiuser, but most of the peripheral
driver attachments are still missing.

Thanks go to Jan Nyman for arranging access to the hardware and to
Steve Woodford for reviewing the code.
2005-06-06 20:24:10 +00:00

17 lines
483 B
Plaintext

# $NetBSD: mk.viper,v 1.1 2005/06/06 20:24:10 pooka Exp $
SYSTEM_FIRST_OBJ= viper_start.o
SYSTEM_FIRST_SFILE= ${THISARM}/viper/viper_start.S
KERNEL_BASE_PHYS=0xa0200000
KERNEL_BASE_VIRT=0xc0200000
SYSTEM_LD_TAIL_EXTRA+=; \
echo ${OBJCOPY} -S -O binary $@ $@.bin; \
${OBJCOPY} -S -O binary $@ $@.bin; \
echo gzip \< $@.bin \> $@.bin.gz; \
gzip < $@.bin > $@.bin.gz
EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin@}
EXTRA_KERNELS+= ${KERNELS:@.KERNEL.@${.KERNEL.}.bin.gz@}