summaryrefslogtreecommitdiff
path: root/tests/test_tree1_wrong4.dts
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2018-01-17 05:08:01 +0000
committerKyle Evans <kevans@FreeBSD.org>2018-01-17 05:08:01 +0000
commitfd06f809dbeccaf4318b587dbec69a56636e054b (patch)
treeda8e802a53648f138b2f2be8091e1ffb0913d57f /tests/test_tree1_wrong4.dts
parent2f36e4ecd0f0c04781c752e5382906a43feaf4e3 (diff)
Create vendor-sys/libfdt from libfdt in vendor/dtcvendor/libfdt/1.4.6
There are no plans at the moment to continue updating GPL dtc in the tree as BSDL dtc is slowly replacing it. We use libfdt in the kernel and loaders, so fork off the libfdt bits from vendor/dtc into vendor-sys/libfdt rather than continuing to update vendor/dtc when we have no intention of updating anything in userland as a result of these imports. This also leaves us with a vendor branch whose content has a consistent license- the entirety of libfdt is dual license, GPL/BSD, although that was not a primary concern.
Notes
svn path=/vendor-sys/libfdt/dist/; revision=328072 svn path=/vendor-sys/libfdt/1.4.6/; revision=328073; tag=vendor/libfdt/1.4.6
Diffstat (limited to 'tests/test_tree1_wrong4.dts')
-rw-r--r--tests/test_tree1_wrong4.dts41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/test_tree1_wrong4.dts b/tests/test_tree1_wrong4.dts
deleted file mode 100644
index 2c5641618e4a..000000000000
--- a/tests/test_tree1_wrong4.dts
+++ /dev/null
@@ -1,41 +0,0 @@
-/dts-v1/;
-
-/memreserve/ 0xdeadbeef00000000 0x100000;
-/memreserve/ 123456789 010000;
-
-/ {
- compatible = "test_tree1";
- prop-int = <0xdeadbeef>;
- prop-str = "hello world";
- #address-cells = <1>;
- #size-cells = <0>;
-
- subnode@1 {
- compatible = "subnode1";
- reg = <1>;
- prop-int = [deadbeef];
-
- subsubnode {
- compatible = "subsubnode1", "subsubnode";
- prop-int = <0xdeadbeef>;
- };
-
- ss1 {
- };
- };
-
- subnode@2 {
- reg = <2>;
- linux,phandle = <0x2000>;
- prop-int = <123456789>;
- #address-cells = <1>;
- #size-cells = <0>;
-
- subsubnode@0 {
- reg = <0>;
- phandle = <0x2001>;
- compatible = "subsubnode2", "subsubnode";
- prop-int = <0726746425>;
- };
- };
-};