Change from bzip2 compression to lzip
author[NTU] <[email protected]>
Mon, 6 Aug 2018 13:18:19 +0000 (21:18 +0800)
committer[NTU] <[email protected]>
Mon, 6 Aug 2018 13:18:19 +0000 (21:18 +0800)
ROM2/Makefile
ROM2/check-romsrc.pl
ROM2/main_basic.c

index 11242d5..a832263 100644 (file)
@@ -43,7 +43,7 @@ rom2.elf: $(OBJS) memory.x check-romsrc.pl
        @perl -w check-romsrc.pl
 
 clean:
-       rm -f *.o *.elf *.s19 *.b *.a rom.tar.bz2 romsrc.s crctab.h version.h m68hc11-gdb gencrctab crctest
+       rm -f *.o *.elf *.s19 *.b *.a rom.tar.lz romsrc.s crctab.h version.h m68hc11-gdb gencrctab crctest
 
 crctest: crctest.c crctab.h
        gcc -o $@ $<
@@ -57,11 +57,11 @@ dump:       rom2.elf
 size:   rom2.s19
        $(SIZE) $<
 
-rom.tar.bz2:
+rom.tar.lz:
        rm -f romsrc.s crctab.h
-       tar c README Makefile gdbsimrc *.pl *.c *.h *.s *.x | bzip2 -c -9 > $@
+       tar c README Makefile gdbsimrc *.pl *.c *.h *.s *.x | lzip -c -9 > $@
 
-romsrc.s: rom.tar.bz2 src2asm.pl
+romsrc.s: rom.tar.lz src2asm.pl
        perl -w src2asm.pl < $< > $@
 
 main_basic.c: version.h
index cf74d0e..7c0bab2 100644 (file)
@@ -9,7 +9,7 @@ while (<OD>) {
 }
 close OD;
 if (!defined $origin) {
-       print "WARNING!!! No bz2 data could be found in the ROM image!\n";
+       print "WARNING!!! No lzip data could be found in the ROM image!\n";
        exit 1;
 }
 $origin = hex($origin);
@@ -25,8 +25,8 @@ if (!defined $pl_origin) {
 }
 $pl_origin = hex($pl_origin);
 if ($pl_origin != $origin) {
-       printf "WARNING!!! The origin of the bz2 data is now 0x%04x. This needs to\n", $origin;
+       printf "WARNING!!! The origin of the lzip data is now 0x%04x. This needs to\n", $origin;
        printf "           be updated in src2asm.pl (which currently says 0x%04x).\n", $pl_origin;
        exit 3;
 }
-printf "Origin of bz2 data is 0x%04x and correct.\n", $origin;
+printf "Origin of lzip data is 0x%04x and correct.\n", $origin;
index 230c5fb..8414357 100644 (file)
@@ -463,7 +463,7 @@ void getrom() {
        s[2] = _rom_src_data[2];
        s[3] = '\0';
        send_string(s);
-       send_string(CRLF " Type YES to download rom.tar.bz2 via XMODEM: ");
+       send_string(CRLF " Type YES to download rom.tar.lz via XMODEM: ");
        msg_clr();
        while (!sci_have_packet); /* spin */
        if (!my_strncmp("YES", (char*)sci_rx_buf, 3)) {

UCC git Repository :: git.ucc.asn.au