summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gibson <dgibson@mulberryst.seuss>2007-06-14 11:58:35 +1000
committerDavid Gibson <dgibson@mulberryst.seuss>2007-06-14 11:58:35 +1000
commit23cdf2379fee7902cd1aa295b2721fdef1163b33 (patch)
treed58b0d92888bf38bb0e13c98644070b81a6a648a
parent948160520884b10f545bec792e0d37c1c14bbf2f (diff)
downloaddevice-tree-compiler-23cdf2379fee7902cd1aa295b2721fdef1163b33.tar.gz
Move everything into a subdirectory in preparation for merge into dtc.
-rw-r--r--libfdt/.gitignore (renamed from .gitignore)0
-rw-r--r--libfdt/GPL (renamed from GPL)0
-rw-r--r--libfdt/Makefile (renamed from Makefile)0
-rw-r--r--libfdt/TODO (renamed from TODO)0
-rw-r--r--libfdt/fdt.c (renamed from fdt.c)0
-rw-r--r--libfdt/fdt.h (renamed from fdt.h)0
-rw-r--r--libfdt/fdt_ro.c (renamed from fdt_ro.c)0
-rw-r--r--libfdt/fdt_rw.c (renamed from fdt_rw.c)0
-rw-r--r--libfdt/fdt_strerror.c (renamed from fdt_strerror.c)0
-rw-r--r--libfdt/fdt_sw.c (renamed from fdt_sw.c)0
-rw-r--r--libfdt/fdt_wip.c (renamed from fdt_wip.c)0
-rw-r--r--libfdt/libfdt.h (renamed from libfdt.h)0
-rw-r--r--libfdt/libfdt_env.h (renamed from libfdt_env.h)0
-rw-r--r--libfdt/libfdt_internal.h (renamed from libfdt_internal.h)0
-rw-r--r--libfdt/tests/.gitignore (renamed from tests/.gitignore)0
-rw-r--r--libfdt/tests/Makefile (renamed from tests/Makefile)0
-rw-r--r--libfdt/tests/del_node.c (renamed from tests/del_node.c)0
-rw-r--r--libfdt/tests/del_property.c (renamed from tests/del_property.c)0
-rw-r--r--libfdt/tests/dumptrees.c (renamed from tests/dumptrees.c)0
-rw-r--r--libfdt/tests/find_property.c (renamed from tests/find_property.c)0
-rw-r--r--libfdt/tests/getprop.c (renamed from tests/getprop.c)0
-rw-r--r--libfdt/tests/move_and_save.c (renamed from tests/move_and_save.c)0
-rw-r--r--libfdt/tests/nop_node.c (renamed from tests/nop_node.c)0
-rw-r--r--libfdt/tests/nop_property.c (renamed from tests/nop_property.c)0
-rw-r--r--libfdt/tests/notfound.c (renamed from tests/notfound.c)0
-rw-r--r--libfdt/tests/open_pack.c (renamed from tests/open_pack.c)0
-rw-r--r--libfdt/tests/path_offset.c (renamed from tests/path_offset.c)0
-rw-r--r--libfdt/tests/root_node.c (renamed from tests/root_node.c)0
-rwxr-xr-xlibfdt/tests/run_tests.sh (renamed from tests/run_tests.sh)0
-rw-r--r--libfdt/tests/rw_tree1.c (renamed from tests/rw_tree1.c)0
-rw-r--r--libfdt/tests/setprop.c (renamed from tests/setprop.c)0
-rw-r--r--libfdt/tests/setprop_inplace.c (renamed from tests/setprop_inplace.c)0
-rw-r--r--libfdt/tests/subnode_offset.c (renamed from tests/subnode_offset.c)0
-rw-r--r--libfdt/tests/sw_tree1.c (renamed from tests/sw_tree1.c)0
-rw-r--r--libfdt/tests/testdata.h (renamed from tests/testdata.h)0
-rw-r--r--libfdt/tests/tests.h (renamed from tests/tests.h)0
-rw-r--r--libfdt/tests/testutils.c (renamed from tests/testutils.c)0
-rw-r--r--libfdt/tests/trees.S (renamed from tests/trees.S)0
-rw-r--r--libfdt/tests/truncated_property.c (renamed from tests/truncated_property.c)0
39 files changed, 0 insertions, 0 deletions
diff --git a/.gitignore b/libfdt/.gitignore
index 4b147f1..4b147f1 100644
--- a/.gitignore
+++ b/libfdt/.gitignore
diff --git a/GPL b/libfdt/GPL
index b7b5f53..b7b5f53 100644
--- a/GPL
+++ b/libfdt/GPL
diff --git a/Makefile b/libfdt/Makefile
index c8240bb..c8240bb 100644
--- a/Makefile
+++ b/libfdt/Makefile
diff --git a/TODO b/libfdt/TODO
index 794d0a6..794d0a6 100644
--- a/TODO
+++ b/libfdt/TODO
diff --git a/fdt.c b/libfdt/fdt.c
index a29f1b0..a29f1b0 100644
--- a/fdt.c
+++ b/libfdt/fdt.c
diff --git a/fdt.h b/libfdt/fdt.h
index e00559a..e00559a 100644
--- a/fdt.h
+++ b/libfdt/fdt.h
diff --git a/fdt_ro.c b/libfdt/fdt_ro.c
index 2ca1b22..2ca1b22 100644
--- a/fdt_ro.c
+++ b/libfdt/fdt_ro.c
diff --git a/fdt_rw.c b/libfdt/fdt_rw.c
index 6e4c808..6e4c808 100644
--- a/fdt_rw.c
+++ b/libfdt/fdt_rw.c
diff --git a/fdt_strerror.c b/libfdt/fdt_strerror.c
index f9d32ef..f9d32ef 100644
--- a/fdt_strerror.c
+++ b/libfdt/fdt_strerror.c
diff --git a/fdt_sw.c b/libfdt/fdt_sw.c
index 25f85d7..25f85d7 100644
--- a/fdt_sw.c
+++ b/libfdt/fdt_sw.c
diff --git a/fdt_wip.c b/libfdt/fdt_wip.c
index 78d530c..78d530c 100644
--- a/fdt_wip.c
+++ b/libfdt/fdt_wip.c
diff --git a/libfdt.h b/libfdt/libfdt.h
index d33a64f..d33a64f 100644
--- a/libfdt.h
+++ b/libfdt/libfdt.h
diff --git a/libfdt_env.h b/libfdt/libfdt_env.h
index 59f2536..59f2536 100644
--- a/libfdt_env.h
+++ b/libfdt/libfdt_env.h
diff --git a/libfdt_internal.h b/libfdt/libfdt_internal.h
index a1a548d..a1a548d 100644
--- a/libfdt_internal.h
+++ b/libfdt/libfdt_internal.h
diff --git a/tests/.gitignore b/libfdt/tests/.gitignore
index b60ed20..b60ed20 100644
--- a/tests/.gitignore
+++ b/libfdt/tests/.gitignore
diff --git a/tests/Makefile b/libfdt/tests/Makefile
index 533c98e..533c98e 100644
--- a/tests/Makefile
+++ b/libfdt/tests/Makefile
diff --git a/tests/del_node.c b/libfdt/tests/del_node.c
index 26bb061..26bb061 100644
--- a/tests/del_node.c
+++ b/libfdt/tests/del_node.c
diff --git a/tests/del_property.c b/libfdt/tests/del_property.c
index 35dc932..35dc932 100644
--- a/tests/del_property.c
+++ b/libfdt/tests/del_property.c
diff --git a/tests/dumptrees.c b/libfdt/tests/dumptrees.c
index 3db0e2b..3db0e2b 100644
--- a/tests/dumptrees.c
+++ b/libfdt/tests/dumptrees.c
diff --git a/tests/find_property.c b/libfdt/tests/find_property.c
index ced14ae..ced14ae 100644
--- a/tests/find_property.c
+++ b/libfdt/tests/find_property.c
diff --git a/tests/getprop.c b/libfdt/tests/getprop.c
index f124951..f124951 100644
--- a/tests/getprop.c
+++ b/libfdt/tests/getprop.c
diff --git a/tests/move_and_save.c b/libfdt/tests/move_and_save.c
index da73157..da73157 100644
--- a/tests/move_and_save.c
+++ b/libfdt/tests/move_and_save.c
diff --git a/tests/nop_node.c b/libfdt/tests/nop_node.c
index 80cf4d0..80cf4d0 100644
--- a/tests/nop_node.c
+++ b/libfdt/tests/nop_node.c
diff --git a/tests/nop_property.c b/libfdt/tests/nop_property.c
index 56256c4..56256c4 100644
--- a/tests/nop_property.c
+++ b/libfdt/tests/nop_property.c
diff --git a/tests/notfound.c b/libfdt/tests/notfound.c
index a93b605..a93b605 100644
--- a/tests/notfound.c
+++ b/libfdt/tests/notfound.c
diff --git a/tests/open_pack.c b/libfdt/tests/open_pack.c
index d614024..d614024 100644
--- a/tests/open_pack.c
+++ b/libfdt/tests/open_pack.c
diff --git a/tests/path_offset.c b/libfdt/tests/path_offset.c
index 05b0c32..05b0c32 100644
--- a/tests/path_offset.c
+++ b/libfdt/tests/path_offset.c
diff --git a/tests/root_node.c b/libfdt/tests/root_node.c
index 6e2c391..6e2c391 100644
--- a/tests/root_node.c
+++ b/libfdt/tests/root_node.c
diff --git a/tests/run_tests.sh b/libfdt/tests/run_tests.sh
index f4a5a54..f4a5a54 100755
--- a/tests/run_tests.sh
+++ b/libfdt/tests/run_tests.sh
diff --git a/tests/rw_tree1.c b/libfdt/tests/rw_tree1.c
index 3fb9307..3fb9307 100644
--- a/tests/rw_tree1.c
+++ b/libfdt/tests/rw_tree1.c
diff --git a/tests/setprop.c b/libfdt/tests/setprop.c
index 7f9be3e..7f9be3e 100644
--- a/tests/setprop.c
+++ b/libfdt/tests/setprop.c
diff --git a/tests/setprop_inplace.c b/libfdt/tests/setprop_inplace.c
index 59c1209..59c1209 100644
--- a/tests/setprop_inplace.c
+++ b/libfdt/tests/setprop_inplace.c
diff --git a/tests/subnode_offset.c b/libfdt/tests/subnode_offset.c
index d4edfe4..d4edfe4 100644
--- a/tests/subnode_offset.c
+++ b/libfdt/tests/subnode_offset.c
diff --git a/tests/sw_tree1.c b/libfdt/tests/sw_tree1.c
index 7b54359..7b54359 100644
--- a/tests/sw_tree1.c
+++ b/libfdt/tests/sw_tree1.c
diff --git a/tests/testdata.h b/libfdt/tests/testdata.h
index 822c69a..822c69a 100644
--- a/tests/testdata.h
+++ b/libfdt/tests/testdata.h
diff --git a/tests/tests.h b/libfdt/tests/tests.h
index ace7ba3..ace7ba3 100644
--- a/tests/tests.h
+++ b/libfdt/tests/tests.h
diff --git a/tests/testutils.c b/libfdt/tests/testutils.c
index fcb1c88..fcb1c88 100644
--- a/tests/testutils.c
+++ b/libfdt/tests/testutils.c
diff --git a/tests/trees.S b/libfdt/tests/trees.S
index 6057668..6057668 100644
--- a/tests/trees.S
+++ b/libfdt/tests/trees.S
diff --git a/tests/truncated_property.c b/libfdt/tests/truncated_property.c
index 5642d8d..5642d8d 100644
--- a/tests/truncated_property.c
+++ b/libfdt/tests/truncated_property.c