diff options
author | Simon Glass <sjg@chromium.org> | 2012-02-27 10:52:37 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-03-29 08:12:47 +0200 |
commit | 92665df21d71400205feddd8ecc4f4fe2f344c11 (patch) | |
tree | 78b1c547e503524390e9a022e5f1e8d9a9767a9c /arch/arm | |
parent | ed3ee5cd0640979a200710b9eefa210a617b19ff (diff) | |
download | u-boot-imx-92665df21d71400205feddd8ecc4f4fe2f344c11.zip u-boot-imx-92665df21d71400205feddd8ecc4f4fe2f344c11.tar.gz u-boot-imx-92665df21d71400205feddd8ecc4f4fe2f344c11.tar.bz2 |
arm: fdt: Add skeleton device tree file from kernel
This was taken from commit b48c54e2 at:
git://git.kernel.org/pub/scm/linux/kernel/git/olof/tegra.git
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/dts/skeleton.dtsi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/dts/skeleton.dtsi b/arch/arm/dts/skeleton.dtsi new file mode 100644 index 0000000..b41d241 --- /dev/null +++ b/arch/arm/dts/skeleton.dtsi @@ -0,0 +1,13 @@ +/* + * Skeleton device tree; the bare minimum needed to boot; just include and + * add a compatible value. The bootloader will typically populate the memory + * node. + */ + +/ { + #address-cells = <1>; + #size-cells = <1>; + chosen { }; + aliases { }; + memory { device_type = "memory"; reg = <0 0>; }; +}; |