From bc5242cd1f88f134203a123a0759017fcdab9394 Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Thu, 18 Jan 2018 21:22:11 -0500 Subject: [PATCH] create_ramdisk: remove references to sparc --- usr/src/cmd/boot/scripts/create_ramdisk.ksh | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/usr/src/cmd/boot/scripts/create_ramdisk.ksh b/usr/src/cmd/boot/scripts/create_ramdisk.ksh index 9395ddbf8c..24703cf699 100644 --- a/usr/src/cmd/boot/scripts/create_ramdisk.ksh +++ b/usr/src/cmd/boot/scripts/create_ramdisk.ksh @@ -42,7 +42,7 @@ usage() { echo "Please use bootadm(1M) instead." echo "" echo "Usage: ${0##*/}: [-R \] [-p \]" - echo "where \ is one of i86pc, sun4u or sun4v" + echo "where \ is one of: i86pc" exit } @@ -93,12 +93,6 @@ i386) PLATFORM=i86pc i86pc) ISA=i386 ARCH64=amd64 ;; -sun4u) ISA=sparc - ARCH64=sparcv9 - ;; -sun4v) ISA=sparc - ARCH64=sparcv9 - ;; *) usage ;; esac @@ -106,11 +100,7 @@ esac BOOT_ARCHIVE=platform/$PLATFORM/boot_archive BOOT_ARCHIVE_64=platform/$PLATFORM/$ARCH64/boot_archive -if [ $PLATFORM = i86pc ] ; then - SPLIT=yes -else # must be sparc - SPLIT=no # there's only 64-bit (sparcv9), so don't split -fi +SPLIT=yes function cleanup { -- 2.11.4.GIT