diff options
author | John Crispin <blogic@openwrt.org> | 2015-01-22 09:35:12 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-01-22 09:35:12 +0000 |
commit | 35d648cb2e6290899e37b50302c88e676452f402 (patch) | |
tree | 1f011b12ce3ded661501872667b057f3d767c241 /target/linux/ramips/dts | |
parent | fd6358859e241b4f2957e079d2cc7df9fcef6a09 (diff) | |
download | master-187ad058-35d648cb2e6290899e37b50302c88e676452f402.tar.gz master-187ad058-35d648cb2e6290899e37b50302c88e676452f402.tar.bz2 master-187ad058-35d648cb2e6290899e37b50302c88e676452f402.zip |
ramips: improve and fix Memory 2 Move support
This patch is a follow up for my previous patch:
"ramips: add support for Intenso Memory 2 Move USB 3.0".
It fixes a couple of errors in the DTS (one of which broke
the gpio-buttons). The kmod-leds-gpio dependency has been
dropped as it is already part of the ramips target.
Furthermore the ramdisk/uImage image is generated by default
for the rt3050 subtarget. This image is needed to flash
OpenWrt for the first time onto the device via TFTP.
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44072 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r-- | target/linux/ramips/dts/M2M.dts | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/target/linux/ramips/dts/M2M.dts b/target/linux/ramips/dts/M2M.dts index aa98991ae1..41910374c9 100644 --- a/target/linux/ramips/dts/M2M.dts +++ b/target/linux/ramips/dts/M2M.dts @@ -7,14 +7,10 @@ model = "Intenso Memory 2 Move"; chosen { - bootargs = "console=ttyS1,57600n8 root=/dev/mtdblock5"; + bootargs = "console=ttyS0,57600n8 root=/dev/mtdblock5"; }; palmbus@10000000 { - uart@500 { - status = "okay"; - }; - spi@b00 { status = "okay"; m25p80@0 { @@ -54,7 +50,7 @@ pinctrl { state_default: pinctrl0 { gpio { - ralink,group = "i2c", "jtag", "uartf"; + ralink,group = "i2c", "uartf"; ralink,function = "gpio"; }; }; @@ -73,21 +69,19 @@ }; gpio-keys-polled { - gpio-keys-polled { compatible = "gpio-keys-polled"; #address-cells = <1>; #size-cells = <0>; poll-interval = <20>; - power { - label = "power"; - gpios = <&gpio0 1 1>; - linux,code = <0x116>; - }; - reset { - label = "reset"; - gpios = <&gpio0 10 1>; - linux,code = <0x198>; - }; + power { + label = "power"; + gpios = <&gpio0 1 1>; + linux,code = <0x116>; + }; + reset { + label = "reset"; + gpios = <&gpio0 10 1>; + linux,code = <0x198>; }; }; |