diff --git a/Makefile b/Makefile index 69b2b05..0ee71a5 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ $(PROG_NAME).elf : $(OBJECTS) #@$(CC) $(CFLAGS) -c $< -o $@ copy: $(PROG_NAME).v64 - sh upload.sh + sh ./tools/upload.sh $(PROG_NAME).dfs: $(MKDFSPATH) $(BINDIR)/$(PROG_NAME).dfs $(RESDIR)/filesystem/ diff --git a/ALT64.INI b/res/ALT64.INI similarity index 100% rename from ALT64.INI rename to res/ALT64.INI diff --git a/upload.sh b/tools/upload.sh similarity index 78% rename from upload.sh rename to tools/upload.sh index d4fba53..d5e08a3 100755 --- a/upload.sh +++ b/tools/upload.sh @@ -5,8 +5,8 @@ if [ -e $file ] then echo -e "File $file exists - mount ok" echo -e "copy..." - sudo cp OS64.v64 /mnt/ED64/ - sudo cp ALT64.INI /mnt/ED64/ + sudo cp ../bin/OS64.v64 /mnt/ED64/ + sudo cp ../res/ALT64.INI /mnt/ED64/ echo -e "umounting..." sudo umount /mnt echo -e "done..."