build:also build the hello driver on arm.

Change-Id: I5dd82d3b56b907bfc137313f503f9d9c52c199ef
This commit is contained in:
Kees Jongenburger 2014-03-24 16:38:24 +01:00 committed by Lionel Sambuc
parent 1f619c93a8
commit 4dafcd9245
3 changed files with 19 additions and 20 deletions

View file

@ -175,7 +175,6 @@
./usr/sbin/fbd minix-sys ./usr/sbin/fbd minix-sys
./usr/sbin/filter minix-sys ./usr/sbin/filter minix-sys
./usr/sbin/fxp minix-sys ./usr/sbin/fxp minix-sys
./usr/sbin/hello minix-sys
./usr/sbin/lance minix-sys ./usr/sbin/lance minix-sys
./usr/sbin/orinoco minix-sys ./usr/sbin/orinoco minix-sys
./usr/sbin/pci minix-sys ./usr/sbin/pci minix-sys

View file

@ -4904,6 +4904,7 @@
./usr/sbin/groupdel minix-sys ./usr/sbin/groupdel minix-sys
./usr/sbin/groupinfo minix-sys ./usr/sbin/groupinfo minix-sys
./usr/sbin/groupmod minix-sys ./usr/sbin/groupmod minix-sys
./usr/sbin/hello minix-sys
./usr/sbin/i2cscan minix-sys ./usr/sbin/i2cscan minix-sys
./usr/sbin/inet minix-sys ./usr/sbin/inet minix-sys
./usr/sbin/installboot_nbsd minix-sys ./usr/sbin/installboot_nbsd minix-sys

View file

@ -1,40 +1,39 @@
# Makefile for all device drivers. # Makefile for all device drivers.
# #
.include <bsd.own.mk> .include <bsd.own.mk>
.if ${MKIMAGEONLY} == "yes" .if ${MKIMAGEONLY} != "yes"
# The default case
.if ${MACHINE_ARCH} == "i386"
SUBDIR= at_wini floppy pci pckbd
.endif
.if ${MACHINE_ARCH} == "earm"
SUBDIR=
.endif
# Drivers available on all platforms # Drivers available on all platforms
SUBDIR+= tty SUBDIR= hello log mmc pty random tty uds vnd readclock
.else # ${MKIMAGEONLY} != "yes"
.if ${MACHINE_ARCH} == "i386" .if ${MACHINE_ARCH} == "i386"
SUBDIR= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \ SUBDIR+= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
e1000 fbd filter floppy fxp hello lance orinoco pci pckbd \ e1000 fbd filter floppy fxp lance orinoco pci pckbd \
printer rtl8139 rtl8169 ti1225 vbox acpi \ printer rtl8139 rtl8169 ti1225 vbox acpi \
virtio_blk virtio_net virtio_blk virtio_net
.endif .endif
.if ${MACHINE_ARCH} == "earm" .if ${MACHINE_ARCH} == "earm"
SUBDIR= bmp085 cat24c256 fb gpio i2c lan8710a \ SUBDIR+= bmp085 cat24c256 fb gpio i2c lan8710a \
sht21 tda19988 tps65217 tps65950 tsl2550 sht21 tda19988 tps65217 tps65950 tsl2550
.endif .endif
# Drivers available on all platforms
SUBDIR+= log mmc pty random tty uds vnd readclock
.endif # ${MKIMAGEONLY} != "yes" .endif # ${MKIMAGEONLY} != "yes"
.if ${MKIMAGEONLY} == "yes"
# MKIMAGEONLY builds are specialized builds that are targeted
# at being small.
SUBDIR= tty
.if ${MACHINE_ARCH} == "i386"
SUBDIR+= at_wini floppy pci pckbd
.endif
.endif # ${MKIMAGEONLY} == "yes"
# memory driver must be last for ramdisk image # memory driver must be last for ramdisk image
SUBDIR+= ramdisk .WAIT memory SUBDIR+= ramdisk .WAIT memory