diff options
author | Dennis Gilmore <dennis@ausil.us> | 2009-08-12 08:55:13 -0500 |
---|---|---|
committer | Dennis Gilmore <dennis@ausil.us> | 2009-08-18 12:45:12 -0500 |
commit | d82c964d1142c162b59acee13cd7b90563689110 (patch) | |
tree | ea96a79103bc890a8203f37312c7c7e07fc838f6 | |
parent | cca0e985c1d1a03e1be7109dffb44c4fd33b5d66 (diff) | |
download | anaconda-d82c964d1142c162b59acee13cd7b90563689110.tar.gz anaconda-d82c964d1142c162b59acee13cd7b90563689110.tar.xz anaconda-d82c964d1142c162b59acee13cd7b90563689110.zip |
add support for making sparc images
-rwxr-xr-x | scripts/mk-images | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/mk-images b/scripts/mk-images index 62ccfbbf7..05e29d638 100755 --- a/scripts/mk-images +++ b/scripts/mk-images @@ -921,6 +921,8 @@ elif [ ${BUILDARCH} = ppc64 ]; then elif [ ${BUILDARCH} = "x86_64" -o ${BUILDARCH} = "i386" ]; then source $TOPDIR/mk-images.x86 source $TOPDIR/mk-images.efi +elif [ ${BUILDARCH} = "sparc64" -o ${BUILDARCH} = "sparcv9" ]; then + source $TOPDIR/mk-images.sparc else source $TOPDIR/mk-images.${BUILDARCH} fi @@ -942,6 +944,8 @@ elif [ "$BUILDARCH" = "x86_64" ]; then elif [ "$BUILDARCH" = "ia64" ]; then kerneltags="kernel" efiarch="ia64" +elif [ "$BUILDARCH" = "sparcv9" -o "$BUILDARCH" = "sparc64" ]; then + arches="sparc64" fi foundakernel="" |