diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 15:28:43 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 15:28:43 +0000 |
commit | bcb91dffec5231fd5f9ababc238093449963f96a (patch) | |
tree | a4732861b5c48708311c2b63cd448542f5572bed | |
parent | 711191d9a041e30191f3d86465911e05bc09de93 (diff) |
The "powerpc" port which has supported the newer Apple Macintosh powerpc based
is being renamed to macppc. This is to allow sharing of common code
between different powerpc base platforms.
Most of the work involved in the renaming process was performed by miod@
Files moved from arch/powerpc to arch/macppc.
-rw-r--r-- | sys/arch/macppc/Makefile (renamed from sys/arch/powerpc/Makefile) | 4 | ||||
-rw-r--r-- | sys/arch/macppc/README | 15 | ||||
-rw-r--r-- | sys/arch/powerpc/README | 12 |
3 files changed, 17 insertions, 14 deletions
diff --git a/sys/arch/powerpc/Makefile b/sys/arch/macppc/Makefile index a12b21ea85f..74930488ad6 100644 --- a/sys/arch/powerpc/Makefile +++ b/sys/arch/macppc/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.5 2001/07/04 08:38:47 niklas Exp $ +# $OpenBSD: Makefile,v 1.1 2001/09/01 15:28:42 drahn Exp $ NOPROG= noprog NOMAN= noman -.if ${MACHINE} == "powerpc" +.if ${MACHINE} == "macppc" SUBDIR= stand .endif diff --git a/sys/arch/macppc/README b/sys/arch/macppc/README new file mode 100644 index 00000000000..28a1982cad0 --- /dev/null +++ b/sys/arch/macppc/README @@ -0,0 +1,15 @@ +This is the macppc port, it support most of the "New World" Apple Macintosh +machines. + +TODO: + * Sleep mode support + lower power while running. + suspend/hibernate support. + * PCMCIA support + * Legacy machine support + esp ethernet + - other legacy support. + Openfirmware 1.x (xcoff bootloader) + +Dale +drahn@cvs.openbsd.org diff --git a/sys/arch/powerpc/README b/sys/arch/powerpc/README deleted file mode 100644 index 7e5e7d4a4e5..00000000000 --- a/sys/arch/powerpc/README +++ /dev/null @@ -1,12 +0,0 @@ -The current kernel supports PowerMac G4 and iMacs, additional machines -may be supported to varying degrees. - - -TODO: - * Legacy machine support - esp ethernet - - other legacy support. - Openfirmware 1.x (xcoff bootloader) - -Dale -drahn@cvs.openbsd.org |