]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Move examples/ to examples/standalone
authorPeter Tyser <ptyser@xes-inc.com>
Fri, 10 Jul 2009 16:03:19 +0000 (11:03 -0500)
committerWolfgang Denk <wd@denx.de>
Mon, 20 Jul 2009 22:13:21 +0000 (00:13 +0200)
The current files in examples are all standalone application examples,
so put them in their own subdirectory for organizational purposes

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24 files changed:
Makefile
examples/standalone/.gitignore [moved from examples/.gitignore with 100% similarity]
examples/standalone/82559_eeprom.c [moved from examples/82559_eeprom.c with 100% similarity]
examples/standalone/Makefile [moved from examples/Makefile with 100% similarity]
examples/standalone/README.smc91111_eeprom [moved from examples/README.smc91111_eeprom with 100% similarity]
examples/standalone/eepro100_eeprom.c [moved from examples/eepro100_eeprom.c with 100% similarity]
examples/standalone/hello_world.c [moved from examples/hello_world.c with 100% similarity]
examples/standalone/interrupt.c [moved from examples/interrupt.c with 100% similarity]
examples/standalone/mem_to_mem_idma2intr.c [moved from examples/mem_to_mem_idma2intr.c with 100% similarity]
examples/standalone/mips.lds [moved from examples/mips.lds with 100% similarity]
examples/standalone/nios.lds [moved from examples/nios.lds with 100% similarity]
examples/standalone/nios2.lds [moved from examples/nios2.lds with 100% similarity]
examples/standalone/ppc_longjmp.S [moved from examples/ppc_longjmp.S with 100% similarity]
examples/standalone/ppc_setjmp.S [moved from examples/ppc_setjmp.S with 100% similarity]
examples/standalone/sched.c [moved from examples/sched.c with 100% similarity]
examples/standalone/smc91111_eeprom.c [moved from examples/smc91111_eeprom.c with 100% similarity]
examples/standalone/smc911x_eeprom.c [moved from examples/smc911x_eeprom.c with 100% similarity]
examples/standalone/sparc.lds [moved from examples/sparc.lds with 100% similarity]
examples/standalone/stubs.c [moved from examples/stubs.c with 100% similarity]
examples/standalone/test_burst.c [moved from examples/test_burst.c with 100% similarity]
examples/standalone/test_burst.h [moved from examples/test_burst.h with 100% similarity]
examples/standalone/test_burst_lib.S [moved from examples/test_burst_lib.S with 100% similarity]
examples/standalone/timer.c [moved from examples/timer.c with 100% similarity]
examples/standalone/x86-testapp.c [moved from examples/x86-testapp.c with 100% similarity]

index 4fe32328cbed5c4d52c2aac7164c70f5c4173d15..9ffba2e9377ac0d99db0b8e193179c85244bb1f1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -140,7 +140,7 @@ endif
 # The "tools" are needed early, so put this first
 # Don't include stuff already done in $(LIBS)
 SUBDIRS        = tools \
-         examples \
+         examples/standalone \
          api_examples
 
 .PHONY : $(SUBDIRS)
@@ -3592,11 +3592,15 @@ grsim_leon2_config : unconfig
 #########################################################################
 
 clean:
-       @rm -f $(obj)examples/82559_eeprom $(obj)examples/eepro100_eeprom \
-              $(obj)examples/hello_world  $(obj)examples/interrupt       \
-              $(obj)examples/mem_to_mem_idma2intr                        \
-              $(obj)examples/sched        $(obj)examples/smc91111_eeprom \
-              $(obj)examples/test_burst   $(obj)examples/timer
+       @rm -f $(obj)examples/standalone/82559_eeprom                     \
+              $(obj)examples/standalone/eepro100_eeprom                  \
+              $(obj)examples/standalone/hello_world                      \
+              $(obj)examples/standalone/interrupt                        \
+              $(obj)examples/standalone/mem_to_mem_idma2intr             \
+              $(obj)examples/standalone/sched                            \
+              $(obj)examples/standalone/smc91111_eeprom                  \
+              $(obj)examples/standalone/test_burst                       \
+              $(obj)examples/standalone/timer
        @rm -f $(obj)tools/bmp_logo        $(obj)tools/easylogo/easylogo  \
               $(obj)tools/env/{fw_printenv,fw_setenv}                    \
               $(obj)tools/envcrc                                         \
similarity index 100%
rename from examples/sched.c
rename to examples/standalone/sched.c
similarity index 100%
rename from examples/stubs.c
rename to examples/standalone/stubs.c
similarity index 100%
rename from examples/timer.c
rename to examples/standalone/timer.c