[LEDE-DEV] [PATCH] ar71xx: Chipidea USB device support for QCA953x

2017-08-31 Thread adron
here: https://github.com/adron-s/QCA953x-usb-device-mode Signed-off-by: Sergey Sergeev --- ...940-usb-chipidea-QCA953x-platform-support.patch | 87 ++ 1 file changed, 87 insertions(+) create mode 100644 target/linux/ar71xx/patches-4.4/940-usb-chipidea-QCA953x-platform

[LEDE-DEV] [PATCH] ar71xx: Fix UBIFS work on Mikrotik RB95x devices

2017-05-31 Thread adron
From: Sergey Sergeev If nand chip has no NAND_NO_SUBPAGE_WRITE flag on its options ubifs can't use it mtd devices and the kernel crashes with error: __nand_correct_data: uncorrectable ECC error Signed-off-by: Sergey Sergeev --- target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c | 2 ++ 1 f

[LEDE-DEV] [PATCH] Fix UBIFS work on Mikrotik RB95x devices

2017-05-30 Thread adron
From: Sergey Sergeev If nand chip has no NAND_NO_SUBPAGE_WRITE flag on its options ubifs can't use it mtd devices and the kernel crashes with error: __nand_correct_data: uncorrectable ECC error --- target/linux/ar71xx/files/arch/mips/ath79/mach-rb95x.c | 2 ++ 1 file changed, 2 insertions(+) di

[LEDE-DEV] [PATCH] ledtrig-netdev: don't cancel work on events for different interfaces

2017-01-29 Thread adron
From: Sergey Sergeev This fixes logic bug(in function netdev_trig_notify) introduced in 0b2991a8ed32b5d9ba0a7c3441a72e1c1a1c4fde commit. Events triggered by different interfaces were stopping work queue so it wasn't working for tx/rx mode. Signed-off-by: Sergey Sergeev --- target/linux/generic

[LEDE-DEV] [PATCH] ledtrig-netdev: don't cancel work on events for different interfaces

2017-01-29 Thread adron
From: Sergey Sergeev This fixes logic bug(in function netdev_trig_notify) introduced in 0b2991a8ed32b5d9ba0a7c3441a72e1c1a1c4fde commit. Events triggered by different interfaces were stopping work queue so it wasn't working for tx/rx mode. Signed-off-by: Sergey Sergeev --- target/linux/generic

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-13 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/lib/upgrade

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-12 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/lib/upgrade

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-08 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/lib/upgrade

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-04 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/lib/upgrade

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-06 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade | 39

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-06 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade | 39

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-04 Thread adron
From: Sergey Sergeev I did not encapsulate the logic in get_image() because too much code (like dd if=...) expects to work with the file instead of url. And use get_image would lead to repeated data reloads from url. Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade |

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-04 Thread adron
From: Sergey Sergeev I did not encapsulate the logic in get_image() because too much code (like dd if=...) expects to work with the file instead of url. And use get_image would lead to repeated data reloads from url. Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade |

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-04 Thread adron
From: Sergey Sergeev I did not encapsulate the logic in get_image() because too much code (like dd if=...) expects to work with the file instead of url. And use get_image would lead to repeated data reloads from url. Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade |

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-04 Thread adron
From: Sergey Sergeev I did not encapsulate the logic in get_image() because too much code (like dd if=...) expects to work with the file instead of url. And use get_image would lead to repeated data reloads from url. Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade |

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-07-04 Thread adron
From: Sergey Sergeev I did not encapsulate the logic in get_image() because too much code (like dd if=...) expects to work with the file instead of url. And use get_image would lead to repeated data reloads from url. Signed-off-by: Sergey Sergeev --- package/base-files/files/sbin/sysupgrade |

[LEDE-DEV] [PATCH] build: Adds the ability to disable personal initramfs build for target device

2016-06-16 Thread adron
From: Sergey Sergeev If KERNEL_INITRAMFS := in the target/linux/*/image/Makefile->Device/%NAME% section is set to '' then personal initramfs file for this target device will not be created. This var is similar to the Device/Build/kernel KERNEL_INSTALL := Signed-off-by: Sergey Sergeev --- i