*
* Copyright (C) 2005 Mike Baker
*
- * $Id$
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
+ * $Id$
+ *
*/
#include <stdio.h>
unsigned long crc;
unsigned long poly = 0xEDB88320L;
int n, bit;
- crc32 = (unsigned long *) malloc(256 * sizeof(unsigned long));
+ if ((crc32 = (unsigned long *) malloc(256 * sizeof(unsigned long))) == (void *)-1) {
+ perror("malloc");
+ exit(1);
+ }
for (n = 0; n < 256; n++) {
crc = (unsigned long) n;
for (bit = 0; bit < 8; bit++)
int fd;
unsigned long len;
struct trx_header *ptr;
+ unsigned offset;
+
if (((fd = open(FILENAME, O_RDWR)) < 0)
|| ((len = lseek(fd, 0, SEEK_END)) < 0)
|| ((ptr = (struct trx_header *) mmap(0, len, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1))
exit(-1);
}
+ /* treat last partition as rootfs offset */
+ offset = ptr->offsets[2] ? : ptr->offsets[1];
+
if (argc > 1 && !strcmp(argv[1],"--move")) {
- if (ptr->offsets[1] >= ptr->len) {
+ if (offset >= ptr->len) {
printf("Partition already moved outside trx\n");
- } else if (ptr->offsets[1] & 0x0001ffff) {
+#if 0
+ } else if (offset & 0x0001ffff) {
printf("Partition does not start on a block boundary\n");
+#endif
} else {
init_crc32();
- bzero((void *)((int)ptr + ptr->len), (size_t)(len - ptr->len));
- ptr->len = ptr->offsets[1];
+ //bzero((void *)((int)ptr + ptr->len), (size_t)(len - ptr->len));
+ ptr->len = offset;
ptr->crc32 = crc32buf((void *) &(ptr->flag_version), ptr->len - offsetof(struct trx_header, flag_version));
- msync(ptr,len,MS_SYNC|MS_INVALIDATE);
+ msync(ptr,sizeof(struct trx_header),MS_SYNC|MS_INVALIDATE);
printf("Partition moved; please reboot\n");
}
} else {
}
- munmap((void *) ptr, sizeof(struct trx_header));
+ munmap((void *) ptr, len);
+ close (fd);
return 0;
}