diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-05-14 21:16:41 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-05-14 21:16:41 +0000 |
commit | 97e15de9613f3abe94438c8f02951dd4b8a7ba31 (patch) | |
tree | 63142765465cb403310163b97354ad3645992638 /distrib/sgi/ramdisk | |
parent | 8e6ece9578fb915805c3800696ef37c65159828c (diff) |
Rename sgi GENERIC and RAMDISK with -IP32 suffixes, and have the build
machinery minimally cope with this.
Discussed with and reluctantely accepted by deraadt@; we both dislike
losing the ``naturally comes out of your fingers'' kernel names and the
``one size fits all'' logic; but for now I don't see any easy way to
get a single kernel binary able to run on multiple IP## flavours.
Diffstat (limited to 'distrib/sgi/ramdisk')
-rw-r--r-- | distrib/sgi/ramdisk/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/sgi/ramdisk/Makefile b/distrib/sgi/ramdisk/Makefile index 4eb06e9de37..a1d0302db64 100644 --- a/distrib/sgi/ramdisk/Makefile +++ b/distrib/sgi/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2009/04/17 03:58:54 deraadt Exp $ +# $OpenBSD: Makefile,v 1.10 2009/05/14 21:16:38 miod Exp $ REV= ${OSrev} @@ -44,10 +44,10 @@ ${IMAGE}: rd_setup do_files rd_teardown .endif bsd: - cd ${.TOP}/../../sys/arch/sgi/conf && config RAMDISK - cd ${.TOP}/../../sys/arch/sgi/compile/RAMDISK && \ + cd ${.TOP}/../../sys/arch/sgi/conf && config RAMDISK-IP32 + cd ${.TOP}/../../sys/arch/sgi/compile/RAMDISK-IP32 && \ ${MAKE} clean && ${MAKE} depend && ${MAKE} - cp ${.TOP}/../../sys/arch/sgi/compile/RAMDISK/bsd bsd + cp ${.TOP}/../../sys/arch/sgi/compile/RAMDISK-IP32/bsd bsd rd_setup: dd if=/dev/zero of=${IMAGE} bs=512 count=${NBLKS} |