mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 17:55:55 +02:00
Remove useless mksyshdr utility, replaced by mkcsysimg, Edimax images are no longer broken, and have been tested
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6847 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2a4405597a
commit
6e7905d2a3
@ -46,7 +46,6 @@ define Image/Build/Compex
|
||||
endef
|
||||
|
||||
define Image/Build/Edimax
|
||||
# FIXME : not tested (hardware ?)
|
||||
$(STAGING_DIR)/bin/mkcsysimg -B $(4) -d -w \
|
||||
-r $(KDIR)/loader-edimax.gz \
|
||||
-x $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-noloader.trx \
|
||||
|
@ -26,7 +26,6 @@ define Build/Compile
|
||||
$(call cc,ptgen)
|
||||
$(call cc,airlink)
|
||||
$(call cc,srec2bin)
|
||||
$(call cc,mksyshdr)
|
||||
$(call cc,mkmylofw)
|
||||
$(call cc,mkcsysimg)
|
||||
endef
|
||||
|
@ -1,46 +0,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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user