summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarex <marex@openbsd.org>2009-09-09 12:10:34 +0000
committermarex <marex@openbsd.org>2009-09-09 12:10:34 +0000
commit674517b7512b8832dbb8adecb3cc270c651e2797 (patch)
tree997b696f78710fee013ead9fa2eb355deb25c39c
parentPalm: Add support for PXA255 Palm Tungsten|C (diff)
downloadwireguard-openbsd-674517b7512b8832dbb8adecb3cc270c651e2797.tar.xz
wireguard-openbsd-674517b7512b8832dbb8adecb3cc270c651e2797.zip
Palm: Integration into the tree
OK deraadt@
-rw-r--r--Makefile.cross5
-rw-r--r--lib/libarch/arm/Makefile4
-rw-r--r--sys/Makefile4
-rw-r--r--sys/dev/microcode/atmel/Makefile4
-rw-r--r--sys/dev/microcode/kue/Makefile4
-rw-r--r--sys/dev/microcode/rum/Makefile4
-rw-r--r--sys/dev/microcode/symbol/Makefile5
-rw-r--r--sys/dev/microcode/tusb3410/Makefile4
-rw-r--r--sys/dev/microcode/zydas/Makefile4
-rw-r--r--usr.sbin/hotplugd/Makefile4
-rw-r--r--usr.sbin/wsconscfg/Makefile4
-rw-r--r--usr.sbin/wsfontload/Makefile4
12 files changed, 26 insertions, 24 deletions
diff --git a/Makefile.cross b/Makefile.cross
index fbb57d8f0fe..74d185618f5 100644
--- a/Makefile.cross
+++ b/Makefile.cross
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.cross,v 1.26 2008/09/06 16:26:39 drahn Exp $
+# $OpenBSD: Makefile.cross,v 1.27 2009/09/09 12:10:34 marex Exp $
cross-tools: cross-includes cross-binutils cross-gcc cross-lib
cross-distrib: cross-tools cross-bin cross-share cross-sys cross-etc-root-var
@@ -6,7 +6,8 @@ cross-distrib: cross-tools cross-bin cross-share cross-sys cross-etc-root-var
# Have to compute TARGET_ARCH directly in the Makefile, for .if tests involving
# this variable to work.
-.if (${TARGET} == "armish" || ${TARGET} == "zaurus")
+.if (${TARGET} == "armish" || ${TARGET} == "zaurus" || \
+ ${TARGET} == "palm")
TARGET_ARCH= arm
.elif (${TARGET} == "hp300" || ${TARGET} == "mac68k" || \
${TARGET} == "mvme68k")
diff --git a/lib/libarch/arm/Makefile b/lib/libarch/arm/Makefile
index b2025bf7648..c806965490e 100644
--- a/lib/libarch/arm/Makefile
+++ b/lib/libarch/arm/Makefile
@@ -1,9 +1,9 @@
-# $OpenBSD: Makefile,v 1.4 2007/08/01 21:26:23 miod Exp $
+# $OpenBSD: Makefile,v 1.5 2009/09/09 12:10:34 marex Exp $
MAN+= arm_sync_icache.2 arm_drain_writebuf.2
MANSUBDIR=armish zaurus
-.if ${MACHINE} == "armish" || ${MACHINE} == "zaurus"
+.if ${MACHINE} == "armish" || ${MACHINE} == "zaurus" || ${MACHINE} == "palm"
NOPIC=
SRCS+= arm_sync_icache.c arm_drain_writebuf.c
.include <bsd.lib.mk>
diff --git a/sys/Makefile b/sys/Makefile
index 64c8d37f813..19b7356cca5 100644
--- a/sys/Makefile
+++ b/sys/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.31 2008/05/15 20:19:11 kettenis Exp $
+# $OpenBSD: Makefile,v 1.32 2009/09/09 12:10:35 marex Exp $
# $NetBSD: Makefile,v 1.5 1995/09/15 21:05:21 pk Exp $
SUBDIR= dev/microcode \
arch/alpha arch/amd64 arch/armish arch/aviion arch/hp300 \
arch/hppa arch/hppa64 arch/i386 arch/landisk arch/luna88k \
arch/m68k arch/mac68k arch/macppc arch/mvme68k \
- arch/mvme88k arch/mvmeppc arch/sgi arch/socppc \
+ arch/mvme88k arch/mvmeppc arch/palm arch/sgi arch/socppc \
arch/solbourne arch/sparc arch/sparc64 arch/vax arch/zaurus
.include <bsd.subdir.mk>
diff --git a/sys/dev/microcode/atmel/Makefile b/sys/dev/microcode/atmel/Makefile
index da41e5a7723..9b76f057748 100644
--- a/sys/dev/microcode/atmel/Makefile
+++ b/sys/dev/microcode/atmel/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.15 2007/08/01 21:42:43 deraadt Exp $
+# $OpenBSD: Makefile,v 1.16 2009/09/09 12:10:35 marex Exp $
NOPROG=
NOMAN=
@@ -10,7 +10,7 @@ CC=${HOSTCC}
(${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \
(${MACHINE} == "i386") || (${MACHINE} == "sgi") || \
(${MACHINE} == "sparc64") || (${MACHINE} == "zaurus") || \
- (${MACHINE} == "landisk")
+ (${MACHINE} == "landisk") || (${MACHINE} == "palm")
FIRM= atu-intersil-int atu-intersil-ext \
atu-rfmd-int atu-rfmd-ext \
diff --git a/sys/dev/microcode/kue/Makefile b/sys/dev/microcode/kue/Makefile
index 6974858edd7..ce7a5d668e1 100644
--- a/sys/dev/microcode/kue/Makefile
+++ b/sys/dev/microcode/kue/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.8 2007/08/01 21:42:43 deraadt Exp $
+# $OpenBSD: Makefile,v 1.9 2009/09/09 12:10:35 marex Exp $
NOPROG=
NOMAN=
@@ -10,7 +10,7 @@ CC=${HOSTCC}
(${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \
(${MACHINE} == "i386") || (${MACHINE} == "sgi") || \
(${MACHINE} == "sparc64") || (${MACHINE} == "zaurus") || \
- (${MACHINE} == "landisk")
+ (${MACHINE} == "landisk") || (${MACHINE} == "palm")
FIRM= kue
diff --git a/sys/dev/microcode/rum/Makefile b/sys/dev/microcode/rum/Makefile
index 43d54a049fb..10e982a2ed2 100644
--- a/sys/dev/microcode/rum/Makefile
+++ b/sys/dev/microcode/rum/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.8 2009/05/15 15:53:55 damien Exp $
+# $OpenBSD: Makefile,v 1.9 2009/09/09 12:10:35 marex Exp $
NOPROG=
NOMAN=
@@ -10,7 +10,7 @@ CC=${HOSTCC}
(${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \
(${MACHINE} == "i386") || (${MACHINE} == "sgi") || \
(${MACHINE} == "sparc64") || (${MACHINE} == "zaurus") || \
- (${MACHINE} == "landisk")
+ (${MACHINE} == "landisk") || (${MACHINE} == "palm")
FIRM= rum-rt2573 run-rt2870 run-rt3071
diff --git a/sys/dev/microcode/symbol/Makefile b/sys/dev/microcode/symbol/Makefile
index 1ec9c674cb8..91c8f5d5fea 100644
--- a/sys/dev/microcode/symbol/Makefile
+++ b/sys/dev/microcode/symbol/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.6 2007/04/05 23:41:20 drahn Exp $
+# $OpenBSD: Makefile,v 1.7 2009/09/09 12:10:35 marex Exp $
NOPROG=
NOMAN=
@@ -8,7 +8,8 @@ CC=${HOSTCC}
.if (${MACHINE} == "i386") || (${MACHINE} == "macppc") || \
(${MACHINE} == "sparc") || (${MACHINE} == "sparc64") || \
(${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \
- (${MACHINE} == "sgi") || (${MACHINE} == "zaurus")
+ (${MACHINE} == "sgi") || (${MACHINE} == "zaurus") || \
+ (${MACHINE} == "palm")
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \
diff --git a/sys/dev/microcode/tusb3410/Makefile b/sys/dev/microcode/tusb3410/Makefile
index 9ec6f4c527a..0878da1daf7 100644
--- a/sys/dev/microcode/tusb3410/Makefile
+++ b/sys/dev/microcode/tusb3410/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2007/11/19 23:36:40 deraadt Exp $
+# $OpenBSD: Makefile,v 1.3 2009/09/09 12:10:35 marex Exp $
NOPROG=
NOMAN=
@@ -10,7 +10,7 @@ CC=${HOSTCC}
(${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "hppa") || \
(${MACHINE} == "hppa64") || (${MACHINE} == "sgi") || \
(${MACHINE} == "landisk") || (${MACHINE} == "armish") || \
- (${MACHINE} == "zaurus")
+ (${MACHINE} == "zaurus") || (${MACHINE} == "palm")
FIRM= tusb3410
diff --git a/sys/dev/microcode/zydas/Makefile b/sys/dev/microcode/zydas/Makefile
index 11fcf740ed1..ad3bc621fc7 100644
--- a/sys/dev/microcode/zydas/Makefile
+++ b/sys/dev/microcode/zydas/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.7 2008/05/06 00:09:53 deraadt Exp $
+# $OpenBSD: Makefile,v 1.8 2009/09/09 12:10:35 marex Exp $
NOPROG=
NOMAN=
@@ -10,7 +10,7 @@ CC=${HOSTCC}
(${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \
(${MACHINE} == "i386") || (${MACHINE} == "sgi") || \
(${MACHINE} == "sparc64") || (${MACHINE} == "zaurus") || \
- (${MACHINE} == "landisk")
+ (${MACHINE} == "landisk") || (${MACHINE} == "palm")
FIRM= zd1211 zd1211b
diff --git a/usr.sbin/hotplugd/Makefile b/usr.sbin/hotplugd/Makefile
index fd50a5037fc..73d7e2f8b43 100644
--- a/usr.sbin/hotplugd/Makefile
+++ b/usr.sbin/hotplugd/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.10 2009/06/04 00:29:24 deraadt Exp $
+# $OpenBSD: Makefile,v 1.11 2009/09/09 12:10:35 marex Exp $
.if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \
${MACHINE} == "armish" || ${MACHINE} == "i386" || \
${MACHINE} == "hppa" || ${MACHINE} == "landisk" || \
${MACHINE} == "macppc" || ${MACHINE} == "sgi" || \
${MACHINE} == "socppc" || ${MACHINE} == "sparc64" || \
- ${MACHINE} == "zaurus"
+ ${MACHINE} == "zaurus" || ${MACHINE} == "palm"
PROG= hotplugd
SRCS= hotplugd.c
diff --git a/usr.sbin/wsconscfg/Makefile b/usr.sbin/wsconscfg/Makefile
index fc46149b0b3..812cc9173aa 100644
--- a/usr.sbin/wsconscfg/Makefile
+++ b/usr.sbin/wsconscfg/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.28 2009/05/17 01:55:13 deraadt Exp $
+# $OpenBSD: Makefile,v 1.29 2009/09/09 12:10:35 marex Exp $
.if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \
${MACHINE} == "hp300" || ${MACHINE} == "hppa" || \
@@ -7,7 +7,7 @@
${MACHINE} == "sgi" || ${MACHINE} == "sparc" || \
${MACHINE} == "sparc64" || ${MACHINE} == "vax" || \
${MACHINE} == "zaurus" || ${MACHINE} == "landisk" || \
- ${MACHINE} == "socppc"
+ ${MACHINE} == "socppc" || ${MACHINE} == "palm"
PROG= wsconscfg
SRCS= wsconscfg.c
diff --git a/usr.sbin/wsfontload/Makefile b/usr.sbin/wsfontload/Makefile
index 692b877ecee..4616ca36b08 100644
--- a/usr.sbin/wsfontload/Makefile
+++ b/usr.sbin/wsfontload/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.12 2009/05/15 21:45:44 deraadt Exp $
+# $OpenBSD: Makefile,v 1.13 2009/09/09 12:10:35 marex Exp $
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" || \
${MACHINE} == "alpha" || ${MACHINE} == "hppa" || \
- ${MACHINE} == "zaurus"
+ ${MACHINE} == "zaurus" || ${MACHINE} == "palm"
PROG= wsfontload
SRCS= wsfontload.c