]> Zhao Yanbai Git Server - minix.git/commitdiff
build:also build the hello driver on arm.
authorKees Jongenburger <kees.jongenburger@gmail.com>
Mon, 24 Mar 2014 15:38:24 +0000 (16:38 +0100)
committerLionel Sambuc <lionel@minix3.org>
Mon, 28 Jul 2014 15:05:21 +0000 (17:05 +0200)
Change-Id: I5dd82d3b56b907bfc137313f503f9d9c52c199ef

distrib/sets/lists/minix/md.i386
distrib/sets/lists/minix/mi
drivers/Makefile

index acd0126313828eac1be5ffa54758dc280484ccd7..3b99296995f3336e5f6b98b62719c454b835993d 100644 (file)
 ./usr/sbin/fbd                         minix-sys
 ./usr/sbin/filter                      minix-sys
 ./usr/sbin/fxp                         minix-sys
-./usr/sbin/hello                       minix-sys
 ./usr/sbin/lance                       minix-sys
 ./usr/sbin/orinoco                     minix-sys
 ./usr/sbin/pci                         minix-sys
index b42e5ece49c69e23f497d70196d9baa92cf51605..be1dd87a51becb58e2cd1dd41f1dcc9b4c952f3d 100644 (file)
 ./usr/sbin/groupdel                    minix-sys
 ./usr/sbin/groupinfo                   minix-sys
 ./usr/sbin/groupmod                    minix-sys
+./usr/sbin/hello                       minix-sys
 ./usr/sbin/i2cscan                     minix-sys
 ./usr/sbin/inet                                minix-sys
 ./usr/sbin/installboot_nbsd            minix-sys
index 0554d9a225f7bd6070be5ef57b90c63e5089cef2..7e92a77dacfa7e6f378f34374e679ab6520c9ea4 100644 (file)
@@ -1,40 +1,39 @@
 # Makefile for all device drivers.
 #
-
 .include <bsd.own.mk>
 
-.if ${MKIMAGEONLY} == "yes"
-
-.if ${MACHINE_ARCH} == "i386"
-SUBDIR=        at_wini floppy pci pckbd
-.endif
-
-.if ${MACHINE_ARCH} == "earm"
-SUBDIR= 
-.endif
+.if ${MKIMAGEONLY} != "yes"
+# The default case
 
 # Drivers available on all platforms
-SUBDIR+= tty
-
-.else # ${MKIMAGEONLY} != "yes"
+SUBDIR= hello log mmc pty random tty uds vnd readclock
 
 .if ${MACHINE_ARCH} == "i386"
-SUBDIR= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
-       e1000 fbd filter floppy fxp hello lance orinoco pci pckbd \
+SUBDIR+= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \
+       e1000 fbd filter floppy fxp lance orinoco pci pckbd \
        printer rtl8139 rtl8169 ti1225 vbox acpi \
        virtio_blk virtio_net
 .endif
 
 .if ${MACHINE_ARCH} == "earm"
-SUBDIR= bmp085 cat24c256 fb gpio i2c lan8710a \
+SUBDIR+= bmp085 cat24c256 fb gpio i2c lan8710a \
        sht21 tda19988 tps65217 tps65950 tsl2550
 .endif
 
-# Drivers available on all platforms
-SUBDIR+= log mmc pty random tty uds vnd readclock
-
 .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
 SUBDIR+= ramdisk .WAIT memory