1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/* $Id: splitbios.c,v 1.2 2009-01-28 17:20:10 potyra Exp $
*
* Copyright (C) 2008-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include <assert.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
static const char *progname;
static unsigned int rom_width;
static unsigned int img_width;
static unsigned int rom_size;
static unsigned int img_size;
static const char *img;
static void
biossplit(void)
{
unsigned char byte[1024*1024 + 1];
unsigned int count;
unsigned int pos;
unsigned int r;
unsigned int p;
int fdin;
int fdout[16];
int ret;
/*
* Read image.
*/
fdin = open(img, O_RDONLY);
assert(0 <= fdin);
ret = read(fdin, byte, sizeof(byte));
assert(0 <= ret);
assert(ret < sizeof(byte));
img_size = ret;
ret = close(fdin);
assert(0 <= ret);
/*
* Write image to several files.
*/
count = 0;
for (pos = 0; pos < img_size; ) {
/*
* Open ROM images.
*/
for (r = 0; r < img_width / rom_width; r++) {
char name[1024];
sprintf(name, "%s-%u", img, count++);
fdout[r] = open(name, O_WRONLY | O_CREAT, 0666);
assert(0 <= fdout[r]);
}
/*
* Write ROM images.
*/
for (p = 0; p < rom_size; p += rom_width) {
for (r = 0; r < img_width / rom_width; r++) {
ret = write(fdout[r], &byte[pos], rom_width);
assert(ret == rom_width);
pos += rom_width;
}
}
/*
* Close ROM images.
*/
for (r = 0; r < img_width / rom_width; r++) {
ret = close(fdout[r]);
assert(0 <= ret);
}
}
}
static void __attribute__((__noreturn__))
usage(int retval)
{
fprintf(stderr, "Usage: %s <romwidth> <imgwidth> <romsize> <img>\n",
progname);
exit(retval);
}
int
main(int argc, char **argv)
{
int c;
/*
* Get program name.
*/
progname = *argv;
/*
* Get options.
*/
while ((c = getopt(argc, argv, "")) != -1) {
switch (c) {
default:
usage(1);
}
}
argc -= optind;
argv += optind;
/*
* Get arguments.
*/
if (argc == 0) {
usage(1);
}
rom_width = atoi(*argv);
argc--;
argv++;
if (argc == 0) {
usage(1);
}
img_width = atoi(*argv);
argc--;
argv++;
if (argc == 0) {
usage(1);
}
rom_size = atoi(*argv);
argc--;
argv++;
if (argc == 0) {
usage(1);
}
img = *argv;
argc--;
argv++;
if (argc != 0) {
usage(1);
}
/*
* Check arguments.
*/
/* FIXME */
biossplit();
return 0;
}
|