diff options
author | Tom Gall <tgall@gentoo.org> | 2004-05-29 02:49:41 +0000 |
---|---|---|
committer | Tom Gall <tgall@gentoo.org> | 2004-05-29 02:49:41 +0000 |
commit | 37a350c1f55dde85978eeae7bc72fde8285faa0c (patch) | |
tree | 826da93a5fc1c798a084b67cf488aa7cda6ce7e6 /sys-apps | |
parent | PPC stable profile update (diff) | |
download | historical-37a350c1f55dde85978eeae7bc72fde8285faa0c.tar.gz historical-37a350c1f55dde85978eeae7bc72fde8285faa0c.tar.bz2 historical-37a350c1f55dde85978eeae7bc72fde8285faa0c.zip |
64 fixes, build cleanups
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/mac-fdisk/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/mac-fdisk/Manifest | 5 | ||||
-rw-r--r-- | sys-apps/mac-fdisk/files/mac-fdisk-ppc64-1.patch | 491 | ||||
-rw-r--r-- | sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild | 5 |
4 files changed, 501 insertions, 5 deletions
diff --git a/sys-apps/mac-fdisk/ChangeLog b/sys-apps/mac-fdisk/ChangeLog index 5f3d7ff76bbd..e243117cb42e 100644 --- a/sys-apps/mac-fdisk/ChangeLog +++ b/sys-apps/mac-fdisk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/mac-fdisk # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Id: ChangeLog,v 1.7 2004/04/27 21:14:47 agriffis Exp $ +# $Id: ChangeLog,v 1.8 2004/05/29 02:49:41 tgall Exp $ + + 28 May 2004; Tom Gall <tgall@gentoo.org> mac-fdisk-0.1-r1.ebuild: + fix a number of 64 bit problems 27 Apr 2004; Aron Griffis <agriffis@gentoo.org> mac-fdisk-0.1-r1.ebuild: Add inherit eutils diff --git a/sys-apps/mac-fdisk/Manifest b/sys-apps/mac-fdisk/Manifest index 371865ae4c1c..2373a709f6d0 100644 --- a/sys-apps/mac-fdisk/Manifest +++ b/sys-apps/mac-fdisk/Manifest @@ -1,7 +1,8 @@ -MD5 ef9ea0c5b3de3e16fcc918eb14de54d4 ChangeLog 820 +MD5 27cc2012d631fbf3f675fd6d6252f8f0 ChangeLog 920 +MD5 12d177cd347f36939c2552df9acda3cd mac-fdisk-0.1-r1.ebuild 1369 MD5 7bc824c7800055cf588a9a040be8ee37 mac-fdisk-0.1.ebuild 1225 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 -MD5 5ef8fc333e345080c138b5e955ada938 mac-fdisk-0.1-r1.ebuild 1310 MD5 3e9a3be2ca26ae1f824c97f1f4111805 files/digest-mac-fdisk-0.1 136 MD5 1e4edeb8702972aefac52a5b367e9af7 files/digest-mac-fdisk-0.1-r1 137 MD5 d5ac7220533aeb36ef5ba7128dd2e29d files/mac-fdisk-ppc64.patch 3412 +MD5 70dc7bfd1ffda2901ffdf59b6ebacc58 files/mac-fdisk-ppc64-1.patch 14817 diff --git a/sys-apps/mac-fdisk/files/mac-fdisk-ppc64-1.patch b/sys-apps/mac-fdisk/files/mac-fdisk-ppc64-1.patch new file mode 100644 index 000000000000..7fbbdfd356e9 --- /dev/null +++ b/sys-apps/mac-fdisk/files/mac-fdisk-ppc64-1.patch @@ -0,0 +1,491 @@ +diff -Naur mac-fdisk-0.1.orig/bitfield.c mac-fdisk-0.1/bitfield.c +--- mac-fdisk-0.1.orig/bitfield.c 1997-01-10 00:30:51.000000000 +0200 ++++ mac-fdisk-0.1/bitfield.c 2004-05-28 23:08:50.693300896 +0300 +@@ -67,13 +67,12 @@ + // + // Routines + // +-unsigned long +-bitfield_set(unsigned long *bf, int base, int length, unsigned long value) ++unsigned int ++bitfield_set(unsigned int *bf, int base, int length, unsigned int value) + { +- unsigned long t; +- unsigned long m; ++ unsigned int t; ++ unsigned int m; + int s; +- int i; + + // compute shift & mask, coerce value to correct number of bits, + // zap the old bits and stuff the new value +@@ -86,12 +85,11 @@ + } + + +-unsigned long +-bitfield_get(unsigned long bf, int base, int length) ++unsigned int ++bitfield_get(unsigned int bf, int base, int length) + { +- unsigned long m; ++ unsigned int m; + int s; +- int i; + + // compute shift & mask + // return the correct number of bits (shifted to low end) +diff -Naur mac-fdisk-0.1.orig/bitfield.h mac-fdisk-0.1/bitfield.h +--- mac-fdisk-0.1.orig/bitfield.h 1996-12-18 02:44:16.000000000 +0200 ++++ mac-fdisk-0.1/bitfield.h 2004-05-28 19:50:24.751301024 +0300 +@@ -63,5 +63,5 @@ + // + // Forward declarations + // +-unsigned long bitfield_set(unsigned long *bf, int base, int length, unsigned long value); +-unsigned long bitfield_get(unsigned long bf, int base, int length); ++unsigned int bitfield_set(unsigned int *bf, int base, int length, unsigned int value); ++unsigned int bitfield_get(unsigned int bf, int base, int length); +diff -Naur mac-fdisk-0.1.orig/dpme.h mac-fdisk-0.1/dpme.h +--- mac-fdisk-0.1.orig/dpme.h 2004-05-28 19:23:49.281282000 +0300 ++++ mac-fdisk-0.1/dpme.h 2004-05-28 19:25:24.764273728 +0300 +@@ -61,7 +61,7 @@ + // + typedef unsigned char u8; + typedef unsigned short u16; +-typedef unsigned long u32; ++typedef unsigned int u32; + + + // Physical block zero of the disk has this format +@@ -113,10 +113,10 @@ + #endif + u32 dpme_boot_block ; + u32 dpme_boot_bytes ; +- u8 *dpme_load_addr ; +- u8 *dpme_load_addr_2 ; +- u8 *dpme_goto_addr ; +- u8 *dpme_goto_addr_2 ; ++ u32 dpme_load_addr ; ++ u32 dpme_load_addr_2 ; ++ u32 dpme_goto_addr ; ++ u32 dpme_goto_addr_2 ; + u32 dpme_checksum ; + char dpme_process_id[16] ; + u32 dpme_boot_args[32] ; +diff -Naur mac-fdisk-0.1.orig/dump.c mac-fdisk-0.1/dump.c +--- mac-fdisk-0.1.orig/dump.c 2004-05-28 19:23:49.292281000 +0300 ++++ mac-fdisk-0.1/dump.c 2004-05-28 22:52:39.905370360 +0300 +@@ -30,8 +30,8 @@ + */ + + #include <stdio.h> +-#ifndef __linux__ + #include <stdlib.h> ++#ifndef __linux__ + #include <unistd.h> + #endif + #include <string.h> +@@ -63,16 +63,16 @@ + // Global Constants + // + NAMES plist[] = { +- "Drvr", "Apple_Driver", +- "Dr43", "Apple_Driver43", +- "Free", "Apple_Free", +- " HFS", "Apple_HFS", +- " MFS", "Apple_MFS", +- "PDOS", "Apple_PRODOS", +- "junk", "Apple_Scratch", +- "unix", "Apple_UNIX_SVR2", +- " map", "Apple_partition_map", +- 0, 0 ++ {"Drvr"}, {"Apple_Driver"}, ++ {"Dr43"}, {"Apple_Driver43"}, ++ {"Free"}, {"Apple_Free"}, ++ {" HFS"}, {"Apple_HFS"}, ++ {" MFS"}, {"Apple_MFS"}, ++ {"PDOS"}, {"Apple_PRODOS"}, ++ {"junk"}, {"Apple_Scratch"}, ++ {"unix"}, {"Apple_UNIX_SVR2"}, ++ {" map"}, {"Apple_partition_map"}, ++ {0}, {0} + }; + + const char * kStringEmpty = ""; +@@ -164,10 +164,10 @@ + } + #ifdef __mc68000__ + printf("%*s type name " +- "%*s %-*s ( size ) system\n", strlen(map->name)+1, "#", j, "length", j, "base"); ++ "%*s %-*s ( size ) system\n", (int)strlen(map->name)+1, "#", j, "length", j, "base"); + #else + printf("%*s type name " +- "%*s %-*s ( size ) system\n", strlen(map->name)+1, "#", j, "length", j, "base"); ++ "%*s %-*s ( size ) system\n", (int)strlen(map->name)+1, "#", j, "length", j, "base"); + #endif + + /* Grok devfs names. (courtesy Colin Walters)*/ +@@ -201,7 +201,6 @@ + partition_map_header *map; + int j; + DPME *p; +- BZB *bp; + char *s; + #ifdef __mc68000__ + int aflag = 1; +@@ -224,13 +223,13 @@ + } + } + #ifdef __mc68000__ +- printf("%s%-2d %.4s %-12.12s ", dev, entry->disk_address, s, p->dpme_name); ++ printf("%s%-2d %.4s %-12.12s ", dev, (int)entry->disk_address, s, p->dpme_name); + #else +- printf("%s%-4d %.4s %-18.32s ", dev, entry->disk_address, s, p->dpme_name); ++ printf("%s%-4d %.4s %-18.32s ", dev, (int)entry->disk_address, s, p->dpme_name); + #endif + } else { + printf("%s%-4d %20.32s %-18.32s ", dev, +- entry->disk_address, p->dpme_type, p->dpme_name); ++ (int)entry->disk_address, p->dpme_type, p->dpme_name); + } + + if (pflag) { +@@ -314,7 +313,6 @@ + int i; + int fd; + DPME * data; +- long t; + + data = (DPME *) malloc(PBLOCK_SIZE); + if (data == NULL) { +@@ -382,7 +380,7 @@ + printf("Header:\n"); + printf("fd=%d (%s)\n", map->fd, (map->regular_file)?"file":"device"); + printf("map %d blocks out of %d, media %u blocks\n", +- map->blocks_in_map, map->maximum_in_map, map->media_size); ++ map->blocks_in_map, map->maximum_in_map, (unsigned int)map->media_size); + printf("Map is%s writeable", (map->writeable)?kStringEmpty:kStringNot); + printf(", but%s changed\n", (map->changed)?kStringEmpty:kStringNot); + printf("\n"); +@@ -426,7 +424,7 @@ + for (entry = map->disk_order; entry != NULL; entry = entry->next_on_disk) { + p = entry->data; + printf("%2d: %20.32s ", +- entry->disk_address, p->dpme_type); ++ (int)entry->disk_address, p->dpme_type); + printf("%7u @ %-7u ", p->dpme_pblocks, p->dpme_pblock_start); + printf("%c%c%c%c%c%c%c%c%c%c ", + (dpme_valid_get(p))?'V':'v', +@@ -449,7 +447,7 @@ + "goto_address checksum processor\n"); + for (entry = map->disk_order; entry != NULL; entry = entry->next_on_disk) { + p = entry->data; +- printf("%2d: ", entry->disk_address); ++ printf("%2d: ", (int)entry->disk_address); + printf("%7u ", p->dpme_boot_block); + printf("%7u ", p->dpme_boot_bytes); + printf("%8x ", p->dpme_load_addr); +@@ -466,7 +464,7 @@ + */ + for (entry = map->disk_order; entry != NULL; entry = entry->next_on_disk) { + p = entry->data; +- printf("%2d: ", entry->disk_address); ++ printf("%2d: ", (int)entry->disk_address); + + bp = (BZB *) (p->dpme_bzb); + j = -1; +diff -Naur mac-fdisk-0.1.orig/errors.c mac-fdisk-0.1/errors.c +--- mac-fdisk-0.1.orig/errors.c 1997-01-14 22:29:39.000000000 +0200 ++++ mac-fdisk-0.1/errors.c 2004-05-28 23:13:02.016305152 +0300 +@@ -26,12 +26,11 @@ + */ + + #include <stdio.h> +-#ifndef __linux__ + #include <stdlib.h> +-#endif + #include <string.h> + #include <stdarg.h> + ++#include <errno.h> + #include "errors.h" + #include "pdisk.h" + +@@ -115,8 +114,8 @@ + va_end(ap); + + #ifdef __linux__ +- if (value > 0 && value < sys_nerr) { +- fprintf(stderr, " (%s)\n", sys_errlist[value]); ++ if (value > 0 && value < errno) { ++ fprintf(stderr, " (%s)\n", strerror(value)); + } else { + fprintf(stderr, "\n"); + } +@@ -144,8 +143,8 @@ + va_end(ap); + + #ifdef __linux__ +- if (value > 0 && value < sys_nerr) { +- fprintf(stderr, " (%s)\n", sys_errlist[value]); ++ if (value > 0 && value < errno) { ++ fprintf(stderr, " (%s)\n", strerror(value)); + } else { + fprintf(stderr, "\n"); + } +diff -Naur mac-fdisk-0.1.orig/fdisk.c mac-fdisk-0.1/fdisk.c +--- mac-fdisk-0.1.orig/fdisk.c 2004-05-28 19:23:49.665358000 +0300 ++++ mac-fdisk-0.1/fdisk.c 2004-05-28 23:08:05.861327040 +0300 +@@ -146,7 +146,8 @@ + #include <setjmp.h> + #include <errno.h> + #include <endian.h> +- ++#include <string.h> ++#include <sys/types.h> + #include <sys/ioctl.h> + + #include "fdisk.h" +@@ -1490,7 +1491,7 @@ + } + } + +-void main(int argc, char **argv) ++int main(int argc, char **argv) + { + if (argc > 3) + fatal(usage); +diff -Naur mac-fdisk-0.1.orig/fdisklabel.c mac-fdisk-0.1/fdisklabel.c +--- mac-fdisk-0.1.orig/fdisklabel.c 2004-05-28 19:23:49.667358000 +0300 ++++ mac-fdisk-0.1/fdisklabel.c 2004-05-28 23:05:53.467351208 +0300 +@@ -35,6 +35,7 @@ + SUCH DAMAGE. + */ + ++#include <sys/types.h> + #include <unistd.h> + #include <stdio.h> + #include <stdlib.h> +@@ -42,6 +43,7 @@ + #include <ctype.h> + #include <setjmp.h> + #include <errno.h> ++#include <string.h> + + #include <sys/ioctl.h> + #include <sys/param.h> +@@ -264,8 +266,8 @@ + fprintf(f, "type: %s\n", bsd_dktypenames[lp->d_type]); + else + fprintf(f, "type: %d\n", lp->d_type); +- fprintf(f, "disk: %.*s\n", sizeof(lp->d_typename), lp->d_typename); +- fprintf(f, "label: %.*s\n", sizeof(lp->d_packname), lp->d_packname); ++ fprintf(f, "disk: %.*s\n", (int)sizeof(lp->d_typename), lp->d_typename); ++ fprintf(f, "label: %.*s\n", (int)sizeof(lp->d_packname), lp->d_packname); + fprintf(f, "flags:"); + if (lp->d_flags & BSD_D_REMOVABLE) + fprintf(f, " removable"); +@@ -274,17 +276,17 @@ + if (lp->d_flags & BSD_D_BADSECT) + fprintf(f, " badsect"); + fprintf(f, "\n"); +- fprintf(f, "bytes/sector: %d\n", lp->d_secsize); +- fprintf(f, "sectors/track: %d\n", lp->d_nsectors); +- fprintf(f, "tracks/cylinder: %d\n", lp->d_ntracks); +- fprintf(f, "sectors/cylinder: %d\n", lp->d_secpercyl); +- fprintf(f, "cylinders: %d\n", lp->d_ncylinders); ++ fprintf(f, "bytes/sector: %d\n", (int)lp->d_secsize); ++ fprintf(f, "sectors/track: %d\n", (int)lp->d_nsectors); ++ fprintf(f, "tracks/cylinder: %d\n", (int)lp->d_ntracks); ++ fprintf(f, "sectors/cylinder: %d\n", (int)lp->d_secpercyl); ++ fprintf(f, "cylinders: %d\n", (int)lp->d_ncylinders); + fprintf(f, "rpm: %d\n", lp->d_rpm); + fprintf(f, "interleave: %d\n", lp->d_interleave); + fprintf(f, "trackskew: %d\n", lp->d_trackskew); + fprintf(f, "cylinderskew: %d\n", lp->d_cylskew); +- fprintf(f, "headswitch: %d\t\t# milliseconds\n", lp->d_headswitch); +- fprintf(f, "track-to-track seek: %d\t# milliseconds\n", lp->d_trkseek); ++ fprintf(f, "headswitch: %d\t\t# milliseconds\n", (int)lp->d_headswitch); ++ fprintf(f, "track-to-track seek: %d\t# milliseconds\n", (int)lp->d_trkseek); + fprintf(f, "drivedata: "); + for (i = NDDATA - 1; i >= 0; i--) + if (lp->d_drivedata[i]) +@@ -292,7 +294,7 @@ + if (i < 0) + i = 0; + for (j = 0; j <= i; j++) +- fprintf(f, "%d ", lp->d_drivedata[j]); ++ fprintf(f, "%d ", (int)lp->d_drivedata[j]); + } + fprintf (f, "\n%d partitions:\n", lp->d_npartitions); + fprintf (f, "# size offset fstype [fsize bsize cpg]\n"); +@@ -300,7 +302,7 @@ + for (i = 0; i < lp->d_npartitions; i++, pp++) { + if (pp->p_size) { + fprintf(f, " %c: %8d %8d ", 'a' + i, +- pp->p_size, pp->p_offset); ++ (int)pp->p_size, (int)pp->p_offset); + if ((unsigned) pp->p_fstype < BSD_FSMAXTYPES) + fprintf(f, "%8.8s", bsd_fstypes[pp->p_fstype].name); + else +@@ -309,12 +311,12 @@ + { + case BSD_FS_UNUSED: + fprintf(f, " %5d %5d %5.5s ", +- pp->p_fsize, pp->p_fsize * pp->p_frag, ""); ++ (int)pp->p_fsize, (int)pp->p_fsize * pp->p_frag, ""); + break; + + case BSD_FS_BSDFFS: + fprintf(f, " %5d %5d %5d ", +- pp->p_fsize, pp->p_fsize * pp->p_frag, ++ (int)pp->p_fsize, (int)pp->p_fsize * pp->p_frag, + pp->p_cpg); + break; + +@@ -324,21 +326,21 @@ + } + fprintf(f, "\t# (Cyl. %4d", + #if 0 +- pp->p_offset / lp->d_secpercyl); /* differs from Linux fdisk */ ++ (int)(pp->p_offset / lp->d_secpercyl)); /* differs from Linux fdisk */ + #else +- pp->p_offset / lp->d_secpercyl + 1); ++ (int)(pp->p_offset / lp->d_secpercyl + 1)); + #endif + if (pp->p_offset % lp->d_secpercyl) + putc('*', f); + else + putc(' ', f); + fprintf(f, "- %d", +- (pp->p_offset + ++ (int)((pp->p_offset + + pp->p_size + lp->d_secpercyl - 1) / + #if 0 +- lp->d_secpercyl - 1); /* differs from Linux fdisk */ ++ lp->d_secpercyl - 1)); /* differs from Linux fdisk */ + #else +- lp->d_secpercyl); ++ lp->d_secpercyl)); + #endif + if (pp->p_size % lp->d_secpercyl) + putc('*', f); +diff -Naur mac-fdisk-0.1.orig/io.c mac-fdisk-0.1/io.c +--- mac-fdisk-0.1.orig/io.c 2004-05-28 19:23:49.303279000 +0300 ++++ mac-fdisk-0.1/io.c 2004-05-28 23:23:46.721284784 +0300 +@@ -26,15 +26,18 @@ + */ + + #include <stdio.h> +-#ifndef __linux__ + #include <stdlib.h> ++#ifndef __linux__ + #include <fcntl.h> + #include <SCSI.h> + #else + #ifdef __GLIBC__ ++#include <fcntl.h> + #include <sys/types.h> ++#include <sys/stat.h> + #endif + #endif ++#include <linux/unistd.h> + #include <unistd.h> + #include <string.h> + #include <stdarg.h> +@@ -466,7 +469,7 @@ + long t; + + if (rflag) { +- printf("Can't write block %u to file", num); ++ printf("Can't write block %u to file", (unsigned int)num); + return 0; + } + #ifndef __linux__ +diff -Naur mac-fdisk-0.1.orig/partition_map.c mac-fdisk-0.1/partition_map.c +--- mac-fdisk-0.1.orig/partition_map.c 2004-05-28 19:23:49.314277000 +0300 ++++ mac-fdisk-0.1/partition_map.c 2004-05-28 23:18:12.165286000 +0300 +@@ -26,12 +26,10 @@ + */ + + #include <stdio.h> +-#ifndef __linux__ + #include <stdlib.h> + #include <unistd.h> +-#endif + #include <errno.h> +- ++#include <string.h> + #include <fcntl.h> + #ifdef __linux__ + #include <sys/ioctl.h> +@@ -107,7 +105,6 @@ + int fd; + partition_map_header * map; + int writeable; +- unsigned long length; + #ifdef __linux__ + struct stat info; + #endif +@@ -404,9 +401,7 @@ + { + int fd; + partition_map_header * map; +- unsigned long length; + DPME *data; +- int ok; + unsigned long number; + #ifdef __linux__ + struct stat info; +@@ -435,13 +430,13 @@ + map->maximum_in_map = -1; + + number = compute_device_size(fd); +- printf("size of 'device' is %u blocks: ", number); ++ printf("size of 'device' is %u blocks: ", (unsigned int)number); + flush_to_newline(0); + get_number_argument("what should be the size? ", (long *)&number, number); + if (number < 4) { + number = 4; + } +- printf("new size of 'device' is %u blocks\n", number); ++ printf("new size of 'device' is %u blocks\n", (unsigned int)number); + map->media_size = number; + + #ifdef __linux__ +--- mac-fdisk-0.1/pdisk.c.orig 2004-05-29 02:34:15.833913144 -0500 ++++ mac-fdisk-0.1/pdisk.c 2004-05-29 02:36:05.775975008 -0500 +@@ -28,12 +28,14 @@ + */ + + #include <stdio.h> ++#include <stdlib.h> ++#include <unistd.h> ++#include <string.h> ++ + #ifdef __linux__ + #include <getopt.h> + #include <stddef.h> + #else +-#include <stdlib.h> +-#include <unistd.h> + #include <SIOUX.h> + #endif + #include <errno.h> +@@ -437,7 +439,6 @@ + { + long base; + long length; +- long mult; + char *name; + char *type_name; + +@@ -599,7 +600,6 @@ + void + do_reorder(partition_map_header *map) + { +- partition_map * cur; + long old_index; + long index; + diff --git a/sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild b/sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild index fd88a507e6b5..11d26ec26173 100644 --- a/sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild +++ b/sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild,v 1.2 2004/04/27 21:14:47 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mac-fdisk/mac-fdisk-0.1-r1.ebuild,v 1.3 2004/05/29 02:49:41 tgall Exp $ inherit eutils @@ -21,7 +21,8 @@ src_unpack() { mv mac-fdisk-${PV}.orig ${P} cd ${S} cat ${DISTDIR}/mac-fdisk_${PV}-${DEBRV}.diff.gz | gzip -dc | patch -p1 || die - [ `use ppc64` ] && epatch ${FILESDIR}/mac-fdisk-ppc64.patch + [ `use ppc64` ] && epatch ${FILESDIR}/mac-fdisk-ppc64.patch + [ `use ppc64` ] && epatch ${FILESDIR}/mac-fdisk-ppc64-1.patch cd ${WORKDIR} chown -R 0:0 * chmod -R a+r-w+X,u+w * |