From 0451d6fab6ff35abab9e9b6cf7c23bb949133532 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Fri, 9 Sep 2016 21:44:26 +0100 Subject: [PATCH] moved files to more appropriate locations --- Makefile | 2 +- ALT64.INI => res/ALT64.INI | 0 upload.sh => tools/upload.sh | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename ALT64.INI => res/ALT64.INI (100%) rename upload.sh => tools/upload.sh (78%) 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..."