From 819378bf9df8073f951ffcf20d14a46007113392 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Mon, 24 Nov 2008 20:32:57 +0000 Subject: Renamed simulator disk directory from 'archos' to 'simdisk'. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19204 a1c6a512-1295-4272-9138-f99709370657 --- tools/buildzip.pl | 2 +- tools/configure | 8 ++++---- tools/root.make | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'tools') diff --git a/tools/buildzip.pl b/tools/buildzip.pl index 6e25f79e8e..73902541be 100755 --- a/tools/buildzip.pl +++ b/tools/buildzip.pl @@ -423,7 +423,7 @@ sub runone { } if($sim) { - system("cp -r .rockbox archos/ >/dev/null"); + system("cp -r .rockbox simdisk/ >/dev/null"); } else { system("$ziptool $output .rockbox $target >/dev/null"); diff --git a/tools/configure b/tools/configure index 952ed17de7..9b3f108185 100755 --- a/tools/configure +++ b/tools/configure @@ -2132,11 +2132,11 @@ if [ "yes" = "$simulator" ]; then # setup compiler and things for simulator simcc - if [ -d "archos" ]; then - echo "sub directory archos already present" + if [ -d "simdisk" ]; then + echo "Subdirectory 'simdisk' already present" else - mkdir archos - echo "created an archos subdirectory for simulating the hard disk" + mkdir simdisk + echo "Created a 'simdisk' subdirectory for simulating the hard disk" fi fi diff --git a/tools/root.make b/tools/root.make index 154b734a75..54da3159b7 100644 --- a/tools/root.make +++ b/tools/root.make @@ -252,12 +252,12 @@ endif ifdef SIMVER install: - @echo "Installing your build in your archos dir" + @echo "Installing your build in your 'simdisk' dir" $(SILENT)for f in `cat $(BUILDDIR)/apps/features`; do feat="$$feat:$$f" ; done; \ $(TOOLSDIR)/buildzip.pl $(VERBOSEOPT) -t \"$(MODELNAME)$$feat\" -i \"$(TARGET_ID)\" -s -r "$(ROOTDIR)" -f 0 $(TARGET) $(BINARY) fullinstall: - @echo "Installing a full setup in your archos dir" + @echo "Installing a full setup in your 'simdisk' dir" $(SILENT)for f in `cat $(BUILDDIR)/apps/features`; do feat="$$feat:$$f" ; done; \ $(TOOLSDIR)/buildzip.pl $(VERBOSEOPT) -t \"$(MODELNAME)$$feat\" -i \"$(TARGET_ID)\" -s -r "$(ROOTDIR)" -f 2 $(TARGET) $(BINARY) -- cgit