Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
* 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc: powerpc: Fix PCI ROM access powerpc/pseries: Really fix the oprofile CPU type on pseries serial/nwpserial: Fix wrong register read address and add interrupt acknowledge. powerpc/cell: Make ptcal more reliable powerpc: Allow mem=x cmdline to work with 4G+ powerpc/mpic: Fix incorrect allocation of interrupt rev-map powerpc: Fix oprofile sampling of marked events on POWER7 powerpc/iseries: Fix pci breakage due to bad dma_data initialization powerpc: Fix mktree build error on Mac OS X host powerpc/virtex: Fix duplicate level irq events. powerpc/virtex: Add uImage to the default images list powerpc/boot: add simpleImage.* to clean-files list powerpc/8xx: Update defconfigs powerpc/embedded6xx: Update defconfigs powerpc/86xx: Update defconfigs powerpc/85xx: Update defconfigs powerpc/83xx: Update defconfigs powerpc/fsl_soc: Remove mpc83xx_wdt_init, again
This commit is contained in:
@@ -346,7 +346,7 @@ install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
|
||||
clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \
|
||||
zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \
|
||||
zImage.iseries zImage.miboot zImage.pmac zImage.pseries \
|
||||
otheros.bld *.dtb
|
||||
simpleImage.* otheros.bld *.dtb
|
||||
|
||||
# clean up files cached by wrapper
|
||||
clean-kernel := vmlinux.strip vmlinux.bin
|
||||
|
@@ -42,7 +42,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
int in_fd, out_fd;
|
||||
int nblks, i;
|
||||
uint cksum, *cp;
|
||||
unsigned int cksum, *cp;
|
||||
struct stat st;
|
||||
boot_block_t bt;
|
||||
|
||||
@@ -90,7 +90,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
cksum = 0;
|
||||
cp = (void *)&bt;
|
||||
for (i=0; i<sizeof(bt)/sizeof(uint); i++)
|
||||
for (i = 0; i < sizeof(bt) / sizeof(unsigned int); i++)
|
||||
cksum += *cp++;
|
||||
|
||||
/* Assume zImage is an ELF file, and skip the 64K header.
|
||||
@@ -101,7 +101,7 @@ int main(int argc, char *argv[])
|
||||
exit(4);
|
||||
}
|
||||
|
||||
if ((*(uint *)tmpbuf) != htonl(0x7f454c46)) {
|
||||
if ((*(unsigned int *)tmpbuf) != htonl(0x7f454c46)) {
|
||||
fprintf(stderr, "%s is not an ELF image\n", argv[1]);
|
||||
exit(4);
|
||||
}
|
||||
@@ -125,8 +125,8 @@ int main(int argc, char *argv[])
|
||||
perror("zImage read");
|
||||
exit(5);
|
||||
}
|
||||
cp = (uint *)tmpbuf;
|
||||
for (i=0; i<sizeof(tmpbuf)/sizeof(uint); i++)
|
||||
cp = (unsigned int *)tmpbuf;
|
||||
for (i = 0; i < sizeof(tmpbuf) / sizeof(unsigned int); i++)
|
||||
cksum += *cp++;
|
||||
if (write(out_fd, tmpbuf, sizeof(tmpbuf)) != sizeof(tmpbuf)) {
|
||||
perror("boot-image write");
|
||||
|
Reference in New Issue
Block a user