1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 00:33:15 +03:00

convert from dos to unix format

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6791 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-04-01 14:06:59 +00:00
parent 262d6ed3a8
commit 5c48f996ca

View File

@ -1,46 +1,46 @@
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
int main(int argc, char* argv[])
{
FILE* fp;
uint32_t nImgSize;
char* pHeader1 = "CSYS";
uint32_t nHeader2 = 0x80500000;
if (argc != 3)
{
printf("Usage: mksyshdr <header file> <image file>\n");
return -1;
}
fp = fopen(argv[2], "rb");
if (fp != NULL)
{
fseek(fp, 0, SEEK_END);
nImgSize = ftell(fp);
fclose(fp);
fp = fopen(argv[1], "wb+");
if (fp != NULL)
{
fwrite(pHeader1, sizeof(char), 4, fp);
fwrite(&nHeader2, sizeof(nHeader2), 1, fp);
fwrite(&nImgSize, sizeof(nImgSize), 1, fp);
fclose(fp);
}
else
{
printf("Cannot create %s.\n", argv[1]);
return -1;
}
}
else
{
printf("Cannot open %s.\n", argv[2]);
return -1;
}
return 0;
}
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
int main(int argc, char* argv[])
{
FILE* fp;
uint32_t nImgSize;
char* pHeader1 = "CSYS";
uint32_t nHeader2 = 0x80500000;
if (argc != 3)
{
printf("Usage: mksyshdr <header file> <image file>\n");
return -1;
}
fp = fopen(argv[2], "rb");
if (fp != NULL)
{
fseek(fp, 0, SEEK_END);
nImgSize = ftell(fp);
fclose(fp);
fp = fopen(argv[1], "wb+");
if (fp != NULL)
{
fwrite(pHeader1, sizeof(char), 4, fp);
fwrite(&nHeader2, sizeof(nHeader2), 1, fp);
fwrite(&nImgSize, sizeof(nImgSize), 1, fp);
fclose(fp);
}
else
{
printf("Cannot create %s.\n", argv[1]);
return -1;
}
}
else
{
printf("Cannot open %s.\n", argv[2]);
return -1;
}
return 0;
}