Page 1 of 1

Nano R6S

Posted: Thu Apr 16, 2026 2:48 am
by choppyc
Hi,
Could the Nano R6S Rockhip be added to the 1.15 Gargoyle builds?
Thanks in advance.

Re: Nano R6S

Posted: Thu Apr 23, 2026 7:12 am
by Lantis
Sure!
Please let me know if it works ok.

https://lantisproject.com/downloads/gar ... JwbCI6MTB9

Re: Nano R6S

Posted: Thu Apr 23, 2026 7:00 pm
by choppyc
Thanks very much, will let you know if theres any issues :D

Re: Nano R6S

Posted: Fri Apr 24, 2026 9:15 am
by choppyc
Installed, all running very well. only issue (and its very minor) is a openwrt issue ive had before with PS5 signin. Running
uci set dhcp.lan.dhcpv6='server'
uci set dhcp.lan.ra='server'
uci set dhcp.lan.ra_flags='other-config'
uci commit dhcp
fixes the login issue, but other than that all seem to be working perfectly. Thanks Very much.

Re: Nano R6S

Posted: Sat Apr 25, 2026 9:03 am
by Lantis
choppyc wrote:
Fri Apr 24, 2026 9:15 am
Installed, all running very well. only issue (and its very minor) is a openwrt issue ive had before with PS5 signin. Running
uci set dhcp.lan.dhcpv6='server'
uci set dhcp.lan.ra='server'
uci set dhcp.lan.ra_flags='other-config'
uci commit dhcp
fixes the login issue, but other than that all seem to be working perfectly. Thanks Very much.

Code: Select all

uci set dhcp.lan.dhcpv6='server'
uci set dhcp.lan.ra='server'
FYI, these two can be set from the Connection -> DHCP page by setting DHCPv6 to Enabled and Router Advertisements to Enabled.

Code: Select all

uci set dhcp.lan.ra_flags='other-config'
This is expected to be a 'list', not an 'option'.

Code: Select all

uci delete dhcp.lan.ra_flags
uci add_list dhcp.lan.ra_flags='other-config'
Not setting it as a list may result in unexpected behaviour, i.e. it might be ignored entirely. You might not notice this as "other-config" appears to be an internal default anyway, but just something to note.

Are you certain you needed this workaround? I know PS5 is broken with OpenWrt 25.12, but it should be fine on 24.10 (on which Gargoyle is based).

Re: Nano R6S

Posted: Wed Apr 29, 2026 6:15 am
by choppyc
Im just testing -

Code: Select all

root@Gargoyle:~# uci show dhcp.lan
dhcp.lan=dhcp
dhcp.lan.interface='lan'
dhcp.lan.start='100'
dhcp.lan.limit='150'
dhcp.lan.leasetime='12h'
dhcp.lan.dhcpv4='server'
dhcp.lan.dhcpv6='server'
dhcp.lan.ra='server'
dhcp.lan.ra_slaac='0'
dhcp.lan.ra_flags='managed-config other-config'
currently seem to be working, ive set SLAAC to disabled