如意云固件分享: RY-1 的 OpenWrt 的 trunk 固件 Ver: OpenWrt Chaos Calmer r44245 / LuCI (git-15.030.11829-7952ad5)

2015-02-06 12:29:46 +08:00
 shangjiyu
貌似很少有人做这个固件了? 前些天有人找我问, 我就顺便放一个出来

固件地址Dropbox: https://www.dropbox.com/s/837riw7mbwpn23k/openwrt-ramips-mt7620-ry-1-squashfs-sysupgrade.bin?dl=0

固件包含了shadosocks, chinadns, dns2sock, dnscypt-proxy redsocks2 privoxy 迅雷远程,全功能aria2等

最终解释权归本人所有(听说这句话没有法律效应)
disclaimer: 请正确刷入固件,刷坏我也没有办法(刷的坏才怪)...
3416 次点击
所在节点    OpenWrt
33 条回复
lazycat
2015-02-06 13:29:34 +08:00
感谢。。。一直用着N14U的固件。。。
能不能集成一个带802.1x验证的固件呢?
shangjiyu
2015-02-06 13:57:06 +08:00
@lazycat full版的wpad?
mozutaba
2015-02-06 14:24:25 +08:00
先感谢,再问:
系统升级刷入?
有什么已知bug?
ss会不会卡住?
riaqn
2015-02-06 15:31:44 +08:00
一般我不用trunk,更新太快,不稳定。
比如strongswan在trunk上就连不上,在Break barrier上就没问题。
shangjiyu
2015-02-06 15:33:20 +08:00
@mozutaba uboot下刷入, bug待反馈(不知道,我自己用在自己设置下没有问题)... ss卡住?这只是个客户端, 具体还需自己设置服务器, 代理规则...
tyhunter
2015-02-06 16:16:23 +08:00
Mark,等回学校刷下试试
mozutaba
2015-02-06 19:54:08 +08:00
@shangjiyu 以前给装上了goagent,cpu和内存会爆满。然后单装adbyby,页面速度也太慢了。
shangjiyu
2015-02-06 21:56:35 +08:00
@mozutaba 具体也看问题,这个固件没有python
lazycat
2015-02-10 13:05:41 +08:00
@shangjiyu 嗯。。。要是能有图形界面配置就更好了。。。
ivyswen
2015-02-27 10:49:04 +08:00
能否分享一下,BB版增加ry-1支持的方法?
shangjiyu
2015-02-27 19:40:41 +08:00
@ivyswen 这个patch 你可以参考下

Index: target/linux/ramips/dts/RY-01.dts
===================================================================
--- target/linux/ramips/dts/RY-01.dts (revision 0)
+++ target/linux/ramips/dts/RY-01.dts (revision 0)
@@ -0,0 +1,130 @@
+/dts-v1/;
+
+/include/ "mt7620n.dtsi"
+
+/ {
+ compatible = "xcloud,ry-01", "ralink,mt7620n-soc";
+ model = "XCloud RY-01";
+
+ palmbus@10000000 {
+ gpio0: gpio@600 {
+ status = "okay";
+ };
+
+ gpio2: gpio@660 {
+ status = "okay";
+ };
+
+ gpio3: gpio@688 {
+ status = "okay";
+ };
+
+ spi@b00 {
+ status = "okay";
+
+ m25p80@0 {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ #compatible = "mx25l6405d";
+ compatible = "w25q128";
+ reg = <0 0>;
+ linux,modalias = "m25p80", "w25q128";
+ spi-max-frequency = <10000000>;
+
+ partition@0 {
+ label = "u-boot";
+ reg = <0x0 0x30000>;
+ read-only;
+ };
+
+ partition@30000 {
+ label = "u-boot-env";
+ reg = <0x30000 0x10000>;
+ read-only;
+ };
+
+ factory: partition@40000 {
+ label = "factory";
+ reg = <0x40000 0x10000>;
+ read-only;
+ };
+
+ partition@50000 {
+ label = "firmware";
+ reg = <0x50000 0xfb0000>;
+ };
+ };
+ };
+ };
+
+ ehci@101c0000 {
+ status = "okay";
+ };
+
+ ohci@101c1000 {
+ status = "okay";
+ };
+
+ ethernet@10100000 {
+ mtd-mac-address = <&factory 0x4>;
+ ralink,port-map = "wllll";
+ };
+
+ wmac@10180000 {
+ ralink,mtd-eeprom = <&factory 0>;
+ };
+
+ pinctrl {
+ state_default: pinctrl0 {
+ default {
+ ralink,group = "ephy", "wled";
+ ralink,function = "gpio";
+ };
+ };
+ };
+
+ gpio-leds {
+ compatible = "gpio-leds";
+ wan {
+ label = "xcloud:red:wan";
+ gpios = <&gpio2 0 1>;
+ };
+ lan4 {
+ label = "xcloud:red:lan4";
+ gpios = <&gpio2 1 1>;
+ };
+ lan3 {
+ label = "xcloud:red:lan3";
+ gpios = <&gpio2 2 1>;
+ };
+ lan2 {
+ label = "xcloud:red:lan2";
+ gpios = <&gpio2 3 1>;
+ };
+ lan1 {
+ label = "xcloud:red:lan1";
+ gpios = <&gpio2 3 1>;
+ };
+ air {
+ label = "xcloud:red:air";
+ gpios = <&gpio3 0 1>;
+ };
+ };
+
+ gpio-keys-polled {
+ compatible = "gpio-keys-polled";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ poll-interval = <20>;
+ reset {
+ label = "reset";
+ gpios = <&gpio0 1 1>;
+ linux,code = <0x198>;
+ };
+ wps {
+ label = "wps";
+ gpios = <&gpio0 2 1>;
+ linux,code = <0x211>;
+ };
+ };
+};
Index: target/linux/ramips/mt7620/profiles/xcloud-ry-01.mk
===================================================================
--- target/linux/ramips/mt7620/profiles/xcloud-ry-01.mk (revision 0)
+++ target/linux/ramips/mt7620/profiles/xcloud-ry-01.mk (revision 0)
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2011 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/XCloud-RY-01
+ NAME:=XCloud RY 01
+ PACKAGES:=\
+ kmod-usb-core kmod-usb2 kmod-usb-ohci \
+ kmod-ledtrig-usbdev
+endef
+
+define Profile/Default/Description
+ Support for XCloud RY 01
+endef
+$(eval $(call Profile,XCloud-RY-01))

Property changes on: target/linux/ramips/mt7620/profiles/xcloud-ry-01.mk
___________________________________________________________________
Added: svn:executable
+ *

Index: target/linux/ramips/base-files/etc/board.d/01_leds
===================================================================
--- target/linux/ramips/base-files/etc/board.d/01_leds (revision 44550)
+++ target/linux/ramips/base-files/etc/board.d/01_leds (working copy)
@@ -202,6 +202,11 @@
set_wifi_led "asus:blue:air"
set_usb_led "asus:blue:usb"
;;
+ ry-01)
+ ucidef_set_led_default "power" "power" "xcloud:red:power" "1"
+ set_wifi_led "xcloud:red:wifi"
+ set_usb_led "xcloud:red:usb"
+ ;;
rp-n53)
ucidef_set_led_netdev "eth" "Network" "asus:white:back" "eth0"
set_wifi_led "asus:blue:wifi"
Index: target/linux/ramips/base-files/etc/board.d/02_network
===================================================================
--- target/linux/ramips/base-files/etc/board.d/02_network (revision 44550)
+++ target/linux/ramips/base-files/etc/board.d/02_network (working copy)
@@ -154,6 +154,7 @@
f5d8235-v2 | \
hg255d | \
rt-n14u | \
+ ry-01 | \
wrtnode | \
wt3020 | \
ur-326n4g | \
Index: target/linux/ramips/base-files/lib/ramips.sh
===================================================================
--- target/linux/ramips/base-files/lib/ramips.sh (revision 44550)
+++ target/linux/ramips/base-files/lib/ramips.sh (working copy)
@@ -172,6 +172,9 @@
*"Asus RT-N14U")
name="rt-n14u"
;;
+ *"XCloud RY-01")
+ name="ry-01"
+ ;;
*"Asus RT-N13U")
name="rt-n13u"
;;
Index: target/linux/ramips/base-files/lib/upgrade/platform.sh
===================================================================
--- target/linux/ramips/base-files/lib/upgrade/platform.sh (revision 44550)
+++ target/linux/ramips/base-files/lib/upgrade/platform.sh (working copy)
@@ -78,6 +78,7 @@
rt-n10-plus | \
rt-n13u | \
rt-n14u | \
+ ry-01 | \
rt-n15 | \
rt-n56u | \
rut5xx | \
Index: target/linux/ramips/image/Makefile
===================================================================
--- target/linux/ramips/image/Makefile (revision 44550)
+++ target/linux/ramips/image/Makefile (working copy)
@@ -858,6 +858,7 @@
Image/Build/Profile/MLWG2=$(call BuildFirmware/Default16M/$(1),$(1),mlwg2,MLWG2)
Image/Build/Profile/WMR300=$(call BuildFirmware/Default8M/$(1),$(1),wmr-300,WMR300)
Image/Build/Profile/RT-N14U=$(call BuildFirmware/Default8M/$(1),$(1),rt-n14u,RT-N14U)
+Image/Build/Profile/RY-01=$(call BuildFirmware/Default16M/$(1),$(1),ry-01,RY-01)
Image/Build/Profile/WR8305RT=$(call BuildFirmware/Default8M/$(1),$(1),wr8305rt,WR8305RT)
Image/Build/Profile/WRTNODE=$(call BuildFirmware/Default16M/$(1),$(1),wrtnode,WRTNODE)
Image/Build/Profile/WT3020=$(call BuildFirmware/PorayDualSize/$(1),$(1),wt3020,WT3020)
@@ -887,12 +888,12 @@
$(call Image/Build/Profile/MLWG2,$(1))
$(call Image/Build/Profile/WMR300,$(1))
$(call Image/Build/Profile/RT-N14U,$(1))
+ $(call Image/Build/Profile/RY-01,$(1))
$(call Image/Build/Profile/WR8305RT,$(1))
$(call Image/Build/Profile/WRTNODE,$(1))
$(call Image/Build/Profile/WT3020,$(1))
$(call Image/Build/Profile/XIAOMI-MIWIFI-MINI,$(1))
$(call Image/Build/Profile/ZBT-WA05,$(1))
- $(call Image/Build/Profile/ArcherC20i,$(1))
endef
endif
shangjiyu
2015-02-27 19:48:16 +08:00
@ivyswen 这个贴的好点。。 dts这里不对,你可以参考原生固件bootmsg 里修改
http://gist.github.com/shangjiyu/c25b847c5f0e62c428b3
shangjiyu
2015-02-27 19:51:32 +08:00
ivyswen
2015-03-02 06:35:52 +08:00
非常感谢!
guanyongxin
2015-03-09 08:24:02 +08:00
qos v4 正常了吗?git-15.020.45040-a46d203这个版本的QOS v4无效额..
guanyongxin
2015-03-09 15:08:58 +08:00
可以集成个qos-emong功能吗,原版的QOS功能用着实在蛋疼,想单IP限速都不行
guanyongxin
2015-03-09 16:54:32 +08:00
启动pdnsd显示错误

root@OpenWrt:~# /etc/init.d/pdnsd start
Starting proxy DNS server: pdnsdError: Bad config file permissions: file /etc/pdnsd.conf must be only writeable by the user.
shangjiyu
2015-03-09 23:49:56 +08:00
@guanyongxin 权限问题自己修改下好了,有空再折腾下QoS。 另981213大大的分支貌似有2860v2的优化和QoS补丁
guanyongxin
2015-03-10 08:05:51 +08:00
@shangjiyu 981213?有链接么?981213是V2EX的用户名吗
shangjiyu
2015-03-10 08:46:15 +08:00

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/168756

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX